travel/admin/node_modules/rxjs/internal/operators/switchAll.d.ts

4 lines
209 B
TypeScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
import { OperatorFunction, ObservableInput } from '../types';
export declare function switchAll<T>(): OperatorFunction<ObservableInput<T>, T>;
export declare function switchAll<R>(): OperatorFunction<any, R>;