UNPKG

i-do-config

Version:

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

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