1
0
mirror of https://github.com/fluencelabs/libp2p-ts synced 2025-03-31 17:31:05 +00:00

17 lines
546 B
TypeScript

// Type definitions for pull-stream 3.6.8
// Project: https://github.com/pull-stream/pull-stream
// Definitions by: Jaco Greeff <https://github.com/jacogr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node"/>
type Pull = {
(source: any, sink: any): void;
collect: (cb: (error: Error | null, values: Array<Buffer>) => any) => void,
drain: (handler: (message: Buffer) => void, errorHandler?: () => boolean) => void;
values: (values: Array<string | Buffer>) => void;
};
export = Pull;