DefinitelyTyped/types/gulp-install/index.d.ts
2017-03-24 14:27:52 -07:00

22 lines
543 B
TypeScript

// Type definitions for gulp-install v0.6.0
// Project: https://www.npmjs.com/package/gulp-install
// Definitions by: Peter Juras <https://github.com/peterjuras>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
interface Options {
production?: boolean;
ignoreScripts?: boolean;
noOptional?: boolean;
allowRoot?: boolean;
args?: string | string[];
}
interface Install {
(options?: Options): NodeJS.ReadWriteStream;
}
declare const install: Install;
export = install;