1 | # Installation
|
2 | > `npm install --save @types/run-sequence`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for run-sequence (https://github.com/OverZealous/run-sequence).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/run-sequence.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/run-sequence/index.d.ts)
|
10 | ````ts
|
11 | /// <reference types="node" />
|
12 |
|
13 | import gulp = require("gulp");
|
14 |
|
15 | interface IRunSequence {
|
16 | (...streams: Array<string | string[] | gulp.TaskCallback>): NodeJS.ReadWriteStream;
|
17 |
|
18 | use(gulp: gulp.Gulp): IRunSequence;
|
19 | }
|
20 |
|
21 | declare var _tmp: IRunSequence;
|
22 | export = _tmp;
|
23 |
|
24 | ````
|
25 |
|
26 | ### Additional Details
|
27 | * Last updated: Mon, 20 Nov 2023 23:36:24 GMT
|
28 | * Dependencies: [@types/gulp](https://npmjs.com/package/@types/gulp), [@types/node](https://npmjs.com/package/@types/node)
|
29 |
|
30 | # Credits
|
31 | These definitions were written by [Keita Kagurazaka](https://github.com/k-kagurazaka).
|
32 |
|
\ | No newline at end of file |