UNPKG

rxjs-marbles-with-amd

Version:

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

7 lines (6 loc) 218 B
import { Observable } from "rxjs"; export interface DoneFunction { (): void; fail: (error: any) => void; } export declare function observe<T>(observableTest: () => Observable<T>): (done: DoneFunction) => void;