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