DefinitelyTyped/gulp-debug/gulp-debug.d.ts
2016-04-22 14:12:45 -07:00

19 lines
455 B
TypeScript

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