// jaffacake protocol export declare class Store { readonly storeName: string; constructor(dbName?: string, storeName?: string); } export declare function get(key: IDBValidKey, store?: Store): Promise; export declare function set(key: IDBValidKey, value: any, store?: Store): Promise; export declare function del(key: IDBValidKey, store?: Store): Promise; export declare function clear(store?: Store): Promise; export declare function keys(store?: Store): Promise; // helper protocol export declare function closeAll(): Promise;