UNPKG

curli-config

Version:

A small library to load/validate configuration files placed in different sides of the application using environments

9 lines (7 loc) 307 B
import {ConfigFilesPathModelInterface} from './ConfigFilesPathModelInterface'; export interface SettingsInterface { environment: string; filesPaths: Array<ConfigFilesPathModelInterface> | ConfigFilesPathModelInterface; environments?: Array<string>; forceValidateSchemas?: boolean; }