Update .bashrc
[dotfiles/.git] / operators / switchAll.d.ts
1 import { OperatorFunction, ObservableInput } from '../types';
2 export declare function switchAll<T>(): OperatorFunction<ObservableInput<T>, T>;
3 export declare function switchAll<R>(): OperatorFunction<any, R>;