source: trip-planner-front/node_modules/rxjs/internal/operators/switchMapTo.d.ts@ 6a80231

Last change on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 685 bytes
Line 
1import { ObservableInput, OperatorFunction } from '../types';
2export declare function switchMapTo<R>(observable: ObservableInput<R>): OperatorFunction<any, R>;
3/** @deprecated resultSelector is no longer supported. Switch to using switchMap with an inner map */
4export declare function switchMapTo<T, R>(observable: ObservableInput<R>, resultSelector: undefined): OperatorFunction<T, R>;
5/** @deprecated resultSelector is no longer supported. Switch to using switchMap with an inner map */
6export declare function switchMapTo<T, I, R>(observable: ObservableInput<I>, resultSelector: (outerValue: T, innerValue: I, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;
Note: See TracBrowser for help on using the repository browser.