mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
18 lines
445 B
TypeScript
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 {}
|