mirror of
https://github.com/fluencelabs/libp2p-ts
synced 2025-04-03 02:41:04 +00:00
15 lines
384 B
TypeScript
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;
|