UNPKG

inceptum

Version:

hipages take on the foundational library for enterprise-grade apps written in NodeJS

9 lines (8 loc) 272 B
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; }