Interface Store

Represents a key-value store.

interface Store {
    name: string;
    clear(): void | Promise<void>;
    clearSync(): void;
    sync(): Promise<void>;
    transaction(): Transaction<Store>;
}

Hierarchy (view full)

Properties

Methods

Properties

name: string

The name of the store.

Methods