2025-04-01 10:38:02 +09:00

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,
};