API ReferenceFunctions
idbDelete
Function: idbDelete()
function idbDelete(
sandbox: Sandbox,
dbName: string,
storeName: string,
key: string): Promise<void>;Defined in: storage/idb-utils.ts:219
Delete the entry at (dbName, storeName, key) in the given Sandbox's
IndexedDB. No-op if absent.
Parameters
| Parameter | Type | Description |
|---|---|---|
sandbox | Sandbox | The Sandbox whose IDB shim handles the delete. |
dbName | string | IndexedDB database name. |
storeName | string | Object store name within the database. |
key | string | Record key within the object store. |
Returns
Promise<void>