IDBIndex interface of the IndexedDB API provides asynchronous access to an index in a database. An index is a kind of object store for looking up records in another object store, called the referenced object store. You use this interface to retrieve data.

Hierarchy

  • IDBIndex

Properties

keyPath: string | string[]
multiEntry: boolean
name: string

Returns the name of the index.

Returns the IDBObjectStore the index belongs to.

unique: boolean

Methods

Generated using TypeDoc