2018-06-21 15:49:53 +02:00
|
|
|
// 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"/>
|
|
|
|
|
2018-06-22 12:53:49 +02:00
|
|
|
declare module 'pull-stream' {
|
2018-06-21 15:49:53 +02:00
|
|
|
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;
|
2018-06-22 12:53:49 +02:00
|
|
|
}
|