UNPKG

301 BTypeScriptView Raw
1import { EventStream } from "./observable";
2/**
3 * Creates an EventStream from an
4 [ES Observable](https://github.com/tc39/proposal-observable). Input can be any
5 ES Observable implementation including RxJS and Kefir.
6 */
7export default function fromESObservable<V>(_observable: any): EventStream<V>;