1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/model/memory/flat-file-db.ts

13 lines
219 B
TypeScript
Raw Normal View History

declare module "flat-file-db" {
2016-12-27 06:36:38 +08:00
export function sync(path: string): DB;
}
declare interface DB {
2016-12-27 06:36:38 +08:00
sync(): any;
put(): any;
get(): any;
del(): any;
has(): any;
keys(): any;
close(): any;
}