UNPKG

388 BTypeScriptView Raw
1/**
2 * Return type for various [Sink](#sink) functions. Indicates whether or not the sink
3 * desires more input from its source. See [`Bacon.fromBinder`](#frombinder) for example.
4 */
5export declare type Reply = "<no-more>" | any;
6/**
7 * Reply for "more data, please".
8 */
9export declare const more: Reply;
10/**
11 * Reply for "no more data, please".
12 */
13export declare const noMore: Reply;