Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
685 bytes
|
Line | |
---|
1 | import { ObservableInput, OperatorFunction } from '../types';
|
---|
2 | export 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 */
|
---|
4 | export 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 */
|
---|
6 | export 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.