@types/gulp-install
Version:
TypeScript definitions for gulp-install
36 lines (27 loc) • 1.04 kB
Markdown
# Installation
> `npm install --save @types/gulp-install`
# Summary
This package contains type definitions for gulp-install (https://www.npmjs.com/package/gulp-install).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-install.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-install/index.d.ts)
````ts
/// <reference types="node" />
interface Options {
production?: boolean | undefined;
ignoreScripts?: boolean | undefined;
noOptional?: boolean | undefined;
allowRoot?: boolean | undefined;
args?: string | string[] | undefined;
}
interface Install {
(options?: Options): NodeJS.ReadWriteStream;
}
declare const install: Install;
export = install;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 03:09:37 GMT
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
# Credits
These definitions were written by [Peter Juras](https://github.com/peterjuras).