ethers.js/misc/admin/lib/config.d.ts
2020-09-22 22:54:48 -04:00

7 lines
181 B
TypeScript

export declare const config: {
get: (key: string) => Promise<string>;
set: (key: string, value: string) => void;
keys: () => Promise<string[]>;
lock: () => void;
};