UNPKG

467 BTypeScriptView Raw
1// Type definitions for gulp-debug v2.0.1
2// Project: https://github.com/sindresorhus/gulp-debug
3// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/// <reference types="node" />
7
8
9interface IOptions {
10 title?: string | undefined;
11 minimal?: boolean | undefined;
12}
13
14declare function debug(options?: IOptions): NodeJS.ReadWriteStream;
15
16declare namespace debug { }
17
18export = debug;