zksync-cli
Version:
CLI tool that simplifies the process of developing applications and interacting with the ZKsync network
15 lines (14 loc) • 447 B
TypeScript
declare class ConfigHandlerClass {
private configPath;
private internalConfig;
constructor();
private loadConfig;
private saveConfig;
private get configExists();
private accessNestedProperty;
getConfigValue<T>(path: string): T | undefined;
setConfigValue(path: string, value: unknown): void;
}
export declare const configHandler: ConfigHandlerClass;
export type ConfigHandler = typeof configHandler;
export {};