Interface Persistence

interface Persistence {
    getItem(key: string): Promise<null | Uint8Array>;
    setItem(key: string, value: Uint8Array): Promise<void>;
}

Implemented by

Methods