UNPKG

most-proxy

Version:
8 lines (7 loc) 217 B
import { Stream } from 'most'; export interface Proxy<T> { attach(stream: Stream<T>): Stream<T>; stream: Stream<T>; } export declare function proxy(): Proxy<any>; export declare function proxy<T>(): Proxy<T>;