UNPKG

229 BTypeScriptView Raw
1export declare class Config {
2 private stateDir;
3 constructor(stateDir: string);
4 getAll: () => Promise<Record<string, any>>;
5 get: (key: string) => Promise<any>;
6 set: (key: string, value: any) => Promise<any>;
7}