UNPKG

253 BTypeScriptView Raw
1import { ConfigAdapter } from './ConfigProvider';
2export declare class JsonProvider implements ConfigAdapter {
3 config: object;
4 constructor(config: any);
5 hasConfig(key: string): boolean;
6 getConfig(key: string, defaultValue?: any): any;
7}