ethers.js/misc/admin/lib/config.d.ts

7 lines
181 B
TypeScript
Raw Normal View History

2020-09-23 05:54:48 +03:00
export declare const config: {
get: (key: string) => Promise<string>;
set: (key: string, value: string) => void;
keys: () => Promise<string[]>;
lock: () => void;
};