wishthis/node_modules/rxjs/internal/operators/switchAll.d.ts

4 lines
209 B
TypeScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
import { OperatorFunction, ObservableInput } from '../types';
export declare function switchAll<T>(): OperatorFunction<ObservableInput<T>, T>;
export declare function switchAll<R>(): OperatorFunction<any, R>;