mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
496 B
TypeScript
18 lines
496 B
TypeScript
// Type definitions for run-sequence
|
|
// Project: https://github.com/OverZealous/run-sequence
|
|
// Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
import gulp = require('gulp');
|
|
|
|
interface IRunSequence {
|
|
(...streams: (string | string[] | gulp.TaskCallback)[]): NodeJS.ReadWriteStream;
|
|
|
|
use(gulp: gulp.Gulp): IRunSequence;
|
|
}
|
|
|
|
declare var _tmp: IRunSequence;
|
|
export = _tmp;
|