UNPKG

better-logging

Version:

better-logging is a drop in replacement for the default logging methods of node.js

8 lines (7 loc) 344 B
import { Config } from './config'; import { DecoratedInstance } from './interfaces/decoratedInstance'; import { LogFunction } from './types/logFunction'; export declare const ConfigCache: { setConfig: (key: DecoratedInstance | LogFunction, config: Config) => void; getConfig: (key: DecoratedInstance | LogFunction) => Config | null; };