2018-06-25 09:37:22 +02:00

19 lines
458 B
TypeScript

// Type definitions for pull-pushable 2.0.0
// Project: https://github.com/pull-stream/pull-pushable
// Definitions by: Jaco Greeff <https://github.com/jacogr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node"/>
declare module 'pull-pushable' {
export type Pushable = {
push: (buffer: Buffer) => void
};
export type PullPushable = () => Pushable;
const pushable: PullPushable;
export default pushable;
}