IndexedDbAdapterOptions
Properties
Section titled “Properties”database?
Section titled “database?”optional database?: string;Database name. Default ‘use-everywhere’.
onError?
Section titled “onError?”optional onError?: (error, operation) => void;Called when an operation fails: blocked storage, a version conflict, a quota. Persistence stays best-effort either way — this is the observability seam, not a recovery path.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
error | unknown |
operation | "read" | "write" | "remove" |
Returns
Section titled “Returns”void