mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* gulp-header * remove tslint rules * fix * fix * fix * fix * fix gulp header version * fix * strictNullChecks true * remove empty namespace
11 lines
376 B
TypeScript
11 lines
376 B
TypeScript
// Type definitions for gulp-header 2.0
|
|
// Project: https://github.com/tracker1/gulp-header
|
|
// Definitions by: Max Fouquet <https://github.com/maxfouquet>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
/// <reference types="node"/>
|
|
|
|
declare function header(text: string, data?: object): NodeJS.ReadWriteStream;
|
|
|
|
export = header;
|