DefinitelyTyped/gulp-install/gulp-install.d.ts
2016-01-23 23:19:15 +01:00

23 lines
594 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 path="../node/node.d.ts" />
declare module "gulp-install" {
interface Options {
production?: boolean;
ignoreScripts?: boolean;
noOptional?: boolean;
allowRoot?: boolean;
args?: string | string[];
}
interface Install {
(options?: Options) : NodeJS.ReadWriteStream;
}
const install : Install;
export = install;
}