UNPKG

confmgr

Version:
8 lines (7 loc) 215 B
export type ConfigValue = any; export type Key = string; export type Module = string; /** * This describes the type of the config items. */ export type Type = 'string' | 'boolean' | 'number' | 'array' | 'object';