Files
DefinitelyTyped/types/pumpify/index.d.ts
Justin Beckwith 8d24d22453 add d.ts for pumpify (#25049)
* add d.ts for pumpify

* pr feedback
2018-04-18 12:56:48 -07:00

18 lines
445 B
TypeScript

// Type definitions for pumpify 1.4
// Project: https://github.com/mafintosh/pumpify
// Definitions by: Justin Beckwith <https://github.com/JustinBeckwith>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
import { Stream, Duplex } from 'stream';
export = pumpify;
declare class pumpify extends Duplex {
constructor();
setPipeline(...args: Stream[]): void;
}
declare namespace pumpify {}