ObjectStoreIndex

@Serializable
data class ObjectStoreIndex(val name: String, val keyPath: IndexedDB.KeyPath, val unique: Boolean, val multiEntry: Boolean)

Object store index.

Constructors

Link copied to clipboard
constructor(name: String, keyPath: IndexedDB.KeyPath, unique: Boolean, multiEntry: Boolean)

Properties

Link copied to clipboard

Index key path.

Link copied to clipboard

If true, index allows multiple entries for a key.

Link copied to clipboard

Index name.

Link copied to clipboard

If true, index is unique.