UNPKG

better-logging

Version:

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

9 lines (8 loc) 204 B
import { LogFunction } from '../types/logFunction'; export interface LogFunctionMap { log: LogFunction; debug: LogFunction; info: LogFunction; warn: LogFunction; error: LogFunction; }