commonMain.IDBTransaction.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of external Show documentation
Show all versions of external Show documentation
Kotlin/JS IndexedDB Wrapper
The newest version!
package com.juul.indexeddb.external
/** https://developer.mozilla.org/en-US/docs/Web/API/IDBTransaction */
public expect class IDBTransaction : EventTarget {
public val objectStoreNames: JsArray // Actually a DOMStringList
public val db: IDBDatabase
public val error: JsAny?
public fun objectStore(name: String): IDBObjectStore
public fun abort()
public fun commit()
public var onabort: (Event) -> Unit
public var onerror: (Event) -> Unit
public var oncomplete: (Event) -> Unit
}