UNPKG

207 BTypeScriptView Raw
1import { Stream } from 'xstream';
2export interface AdaptStream {
3 (s: Stream<any>): any;
4}
5export declare function setAdapt(f: AdaptStream): void;
6export declare function adapt(stream: Stream<any>): any;