145Storage 2 - v0.6.0
    Preparing search index...

    Interface FlatStorageAdapter

    interface FlatStorageAdapter {
        delete: (key: string) => void | Promise<void>;
        get: (key: string) => any;
        set: (key: string, value: any) => void | Promise<void>;
    }
    Index
    delete: (key: string) => void | Promise<void>
    get: (key: string) => any
    set: (key: string, value: any) => void | Promise<void>