All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.IDBTransaction.kt Maven / Gradle / Ivy

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy