// Type definitions for gulp-install v0.6.0 // Project: https://www.npmjs.com/package/gulp-install // Definitions by: Peter Juras // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// 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;