mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
20 lines
497 B
TypeScript
20 lines
497 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" />
|
|
|
|
declare module 'gulp-debug' {
|
|
interface IOptions {
|
|
title?: string;
|
|
minimal?: boolean;
|
|
}
|
|
|
|
function debug(options?: IOptions): NodeJS.ReadWriteStream;
|
|
|
|
namespace debug {}
|
|
|
|
export = debug;
|
|
}
|