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