// Type definitions for gulp-debug v2.0.1 // Project: https://github.com/sindresorhus/gulp-debug // Definitions by: Tanguy Krotoff // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// interface IOptions { title?: string; minimal?: boolean; } declare function debug(options?: IOptions): NodeJS.ReadWriteStream; declare namespace debug { } export = debug;