UNPKG

easy-config-logger

Version:

easy-config-logger is the logger with easy configuration. It is designed for both readability in development and json output in production.

21 lines (17 loc) 224 B
/** * Interfaces */ /** * Option Interface */ interface IOption { level: string; env: string; } /** * Meta Interface */ interface IMeta { [key: string]: number|string|Date|object; } export { IOption, IMeta };