UNPKG

171 BJavaScriptView Raw
1declare module 'debug' {
2 declare type Logger = (msg: string) => void;
3 declare type LoggerFactory = (msg: string) => Logger;
4 declare module.exports: LoggerFactory;
5}