1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/backend/model/memory/flat-file-db.ts

14 lines
204 B
TypeScript
Raw Normal View History

declare module "flat-file-db" {
2017-07-15 17:48:29 +02:00
export function sync(path: string): DB;
}
declare interface DB {
2017-07-15 17:48:29 +02:00
sync(): any;
put(): any;
get(): any;
del(): any;
has(): any;
keys(): any;
close(): any;
}