Function: deleteNamespace()
function deleteNamespace(namespace): Promise<void>;
Defined in: packages/storage-dexie/src/index.ts:45
Drops a namespace's database outright. This is the destructive sibling of
wipe(), which empties an open adapter so a rescue import can follow;
deleteNamespace() releases the file itself and requires no open adapter
(docs/09 §11 step 4).
Parameters
| Parameter | Type |
|---|---|
namespace | string |
Returns
Promise<void>