# Installation
> `npm install --save @types/gulp-debug`

# Summary
This package contains type definitions for gulp-debug (https://github.com/sindresorhus/gulp-debug).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-debug.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-debug/index.d.ts)
````ts
// 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 types="node" />

interface IOptions {
    title?: string | undefined;
    minimal?: boolean | undefined;
}

declare function debug(options?: IOptions): NodeJS.ReadWriteStream;

declare namespace debug {}

export = debug;

````

### Additional Details
 * Last updated: Wed, 20 Sep 2023 17:08:03 GMT
 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
 * Global values: none

# Credits
These definitions were written by [Tanguy Krotoff](https://github.com/tkrotoff).
