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

15 lines
384 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"/>
type Pushable = {
push: (buffer: Buffer) => void
};
declare type PullPushable = () => Pushable;
export = PullPushable;