index.ts 293 B

12345678910
  1. import { Observable } from 'rxjs';
  2. import { toEmitValues } from './toEmitValues';
  3. import { toEmitValuesWith } from './toEmitValuesWith';
  4. import { ObservableMatchers } from './types';
  5. export const matchers: ObservableMatchers<void, Observable<any>> = {
  6. toEmitValues,
  7. toEmitValuesWith,
  8. };