UNPKG

i-do-config

Version:

Provide app configuration as key-value pairs from multiple providers. Inspired by ASP.net Core

9 lines (5 loc) 165 B
export interface IConfigurationValueProvider { name: string; getValue(key: string): boolean|number|string; getSection(key: string): object; }