export interface ConfigAdapter { hasConfig(key: string): boolean; getConfig(key: string, defaultValue?: any): any; } export default class Config implements ConfigAdapter { hasConfig(key: string): boolean; getConfig(key: string, defaultValue?: any): any; }