blob: 08e91ab08845a79b95978aef49b8fd317406f484 (
plain)
1
2
3
4
5
6
7
|
export interface DatabaseInterface {
init(): Promise<void>;
read(path: string): Promise<Object>;
write(path: string, toWrite: Object): Promise<void>;
flush(): Promise<void>;
toString(): Object;
}
|