mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-30 01:47:21 +08:00
14 lines
439 B
TypeScript
14 lines
439 B
TypeScript
// Type definitions for gulp-if
|
|
// Project: https://github.com/robrich/gulp-if
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts"/>
|
|
|
|
declare module "gulp-if" {
|
|
function gulpIf(
|
|
condition: boolean,
|
|
stream: NodeJS.ReadWriteStream,
|
|
elseStream?: NodeJS.ReadWriteStream): NodeJS.ReadWriteStream;
|
|
export = gulpIf;
|
|
} |