mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
12 lines
427 B
TypeScript
12 lines
427 B
TypeScript
// Type definitions for stream-series
|
|
// Project: https://github.com/rschmukler/stream-series
|
|
// Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module "stream-series" {
|
|
function series<T extends NodeJS.ReadableStream>(...streams: T[]): NodeJS.ReadWriteStream;
|
|
export = series;
|
|
}
|