UNPKG

rxjs-marbles-with-amd

Version:

Forked version of (https://github.com/cartant/rxjs-marbles) An RxJS marble testing library for any test framework

4 lines (3 loc) 198 B
import { Observable } from "rxjs"; export declare type DoneFunction = (error?: Error) => void; export declare function observe<T>(observableTest: () => Observable<T>): (done: DoneFunction) => void;