Interface StorageProvider

Interface for storage functionality

interface StorageProvider {
    db: null | IDBDatabase;
    indexed: IDBFactory;
    kernel: Kernel;
    local: Storage;
    session: Storage;
    usage(): Promise<null | StorageEstimate>;
}

Properties

Methods

Properties

db: null | IDBDatabase

Get the IndexedDB database instance

indexed: IDBFactory

IndexedDB interface

kernel: Kernel

Get the kernel instance

local: Storage

LocalStorage interface

session: Storage

SessionStorage interface

Methods