Package-level declarations
Types
The IDBCursorWithValue
interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.
The IDBDatabase
interface of the IndexedDB API provides a connection to a database; you can use an IDBDatabase
object to open a transaction on your database then create, manipulate, and delete objects (data) in that database.
The IDBFactory
interface of the IndexedDB API lets applications asynchronously access the indexed databases.
The IDBKeyRange
interface of the IndexedDB API represents a continuous interval over some data type that is used for keys.
The IDBObjectStore
interface of the IndexedDB API represents an object store in a database.
The IDBOpenDBRequest
interface of the IndexedDB API provides access to the results of requests to open or delete databases (performed using IDBFactory.open and IDBFactory.deleteDatabase), using specific event handler attributes.
The IDBRequest
interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.
The IDBTransaction
interface of the IndexedDB API provides a static, asynchronous transaction on a database using event handler attributes.
The IDBVersionChangeEvent
interface of the IndexedDB API indicates that the version of the database has changed, as the result of an IDBOpenDBRequest.upgradeneeded_event event handler function.