mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
539 B
TypeScript
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;
|