-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdb64.d.ts
26 lines (26 loc) · 1.08 KB
/
db64.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export default db64;
declare namespace db64 {
export function create(name: any, storeNames: any): Promise<void | {
create: (name: any, storeNames: any) => Promise<void | any>;
use: (name: any, storeName: any) => {
set: (key: any, value: any) => Promise<any>;
setEntries: (value: any) => Promise<any>;
get: (key: any) => Promise<any>;
getEntries: (keys: any) => Promise<any>;
delete: (keys: any) => Promise<any>;
};
clear: (name: any, storeName: any) => Promise<any>;
delete: (name: any) => Promise<any>;
}>;
export function use(name: any, storeName: any): {
set: (key: any, value: any) => Promise<any>;
setEntries: (value: any) => Promise<any>;
get: (key: any) => Promise<any>;
getEntries: (keys: any) => Promise<any>;
delete: (keys: any) => Promise<any>;
};
export function clear(name: any, storeName: any): Promise<any>;
export function _delete(name: any): Promise<any>;
export { _delete as delete };
}
//# sourceMappingURL=db64.d.ts.map