UNPKG

236 BTypeScriptView Raw
1/// <reference types="node" />
2
3interface IOptions {
4 title?: string | undefined;
5 minimal?: boolean | undefined;
6}
7
8declare function debug(options?: IOptions): NodeJS.ReadWriteStream;
9
10declare namespace debug {}
11
12export = debug;