DefinitelyTyped/types/gulp-zip/index.d.ts
2017-09-19 14:42:58 -07:00

21 lines
539 B
TypeScript

// Type definitions for gulp-zip 4.0
// Project: https://github.com/sindresorhus/gulp-zip
// Definitions by: Louis Orleans <https://github.com/dudeofawesome>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
declare namespace GulpZip {
interface GulpZipOptions {
/**
* Compress
* @default true
*/
compress?: boolean;
}
}
declare function GulpZip(filename: string, options?: GulpZip.GulpZipOptions): NodeJS.ReadStream;
export = GulpZip;