You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
685 B
6 lines
685 B
import { ObservableInput, OperatorFunction } from '../types';
|
|
export declare function switchMapTo<R>(observable: ObservableInput<R>): OperatorFunction<any, R>;
|
|
/** @deprecated resultSelector is no longer supported. Switch to using switchMap with an inner map */
|
|
export declare function switchMapTo<T, R>(observable: ObservableInput<R>, resultSelector: undefined): OperatorFunction<T, R>;
|
|
/** @deprecated resultSelector is no longer supported. Switch to using switchMap with an inner map */
|
|
export declare function switchMapTo<T, I, R>(observable: ObservableInput<I>, resultSelector: (outerValue: T, innerValue: I, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;
|
|
|