Interface StorageProvider
interface StorageProvider {
db: null | IDBDatabase;
indexed: IDBFactory;
kernel: Kernel;
local: Storage;
session: Storage;
usage(): Promise<null | StorageEstimate>;
}
db: null | IDBDatabase;
indexed: IDBFactory;
kernel: Kernel;
local: Storage;
session: Storage;
usage(): Promise<null | StorageEstimate>;
}
Properties
Readonly
db
Get the IndexedDB database instance
Readonly
indexed
IndexedDB interface
Readonly
kernel
Get the kernel instance
Readonly
local
LocalStorage interface
Readonly
session
SessionStorage interface
Methods
usage
- usage(): Promise<null | StorageEstimate>
Get storage usage
Returns Promise<null | StorageEstimate>
Interface for storage functionality