Client for invoking a host-provided IndexedDB service over the Gestalt transport.
import { IndexedDB } from "@valon-technologies/gestalt";const db = new IndexedDB();const todos = db.objectStore("todos"); Copy
import { IndexedDB } from "@valon-technologies/gestalt";const db = new IndexedDB();const todos = db.objectStore("todos");
Optional
Creates an object store.
Deletes an object store.
Returns a client bound to a single object store.
Opens an explicit transaction over a fixed object-store scope.
Client for invoking a host-provided IndexedDB service over the Gestalt transport.
Example