IndexedDBRepository

abstract class IndexedDBRepository(val objectStoreName: String)

Constructors

Link copied to clipboard
constructor(objectStoreName: String)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
suspend fun <T> IndexedDBRepository.withIndexedDBRead(block: suspend WrappedTransaction.(WrappedObjectStore) -> T): T
Link copied to clipboard
suspend fun IndexedDBRepository.withIndexedDBWrite(block: suspend WrappedTransaction.(WrappedObjectStore) -> Unit)