UNPKG

@acutmore/rxjs

Version:

Reactive Extensions for modern JavaScript

11 lines (10 loc) 351 B
import { TestScheduler } from './TestScheduler'; export declare class MockPromise { private scheduler; private time; private value; private error; private callbacks; constructor(scheduler: TestScheduler, time: number, value: any, error: boolean); then(resolve?: (v: any) => any, reject?: (err: any) => any): MockPromise; }