Interface IConfig

interface IConfig {
    get<T>(path, def?): T;
    has(path): boolean;
    merge(data): void;
    set(path, value): void;
}

Implemented by

Methods

Methods