ObjectStore

@Serializable
data class ObjectStore(val name: String, val keyPath: IndexedDB.KeyPath, val autoIncrement: Boolean, val indexes: List<IndexedDB.ObjectStoreIndex>)

Object store.

Constructors

Link copied to clipboard
constructor(name: String, keyPath: IndexedDB.KeyPath, autoIncrement: Boolean, indexes: List<IndexedDB.ObjectStoreIndex>)

Properties

Link copied to clipboard

If true, object store has auto increment flag set.

Link copied to clipboard

Indexes in this object store.

Link copied to clipboard

Object store key path.

Link copied to clipboard

Object store name.