11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
import { Observable } from 'rxjs';
|
|
|
|
import { toEmitValues } from './toEmitValues';
|
|
import { toEmitValuesWith } from './toEmitValuesWith';
|
|
import { ObservableMatchers } from './types';
|
|
|
|
export const matchers: ObservableMatchers<void, Observable<unknown>> = {
|
|
toEmitValues,
|
|
toEmitValuesWith,
|
|
};
|