object TxnStep
- Companion:
- class
Type members
Classlikes
final case class StoreAdd(store: ObjectStore[_, _], key: IndexedDbKey, value: IDBValue) extends TxnStep[RW, Unit]
final case class StoreDelete[K, V](store: ObjectStore[K, V], key: IndexedDbKey) extends TxnStep[RW, Unit]
final case class StoreGet[K, V](store: ObjectStore[K, V], key: IndexedDbKey) extends TxnStep[RO, Option[V]]
final case class StorePut(store: ObjectStore[_, _], key: IndexedDbKey, value: IDBValue) extends TxnStep[RW, Unit]