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:
624 bytes
|
Line | |
---|
1 | import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';
|
---|
2 | export declare function concatMapTo<T, O extends ObservableInput<any>>(observable: O): OperatorFunction<T, ObservedValueOf<O>>;
|
---|
3 | /** @deprecated */
|
---|
4 | export declare function concatMapTo<T, O extends ObservableInput<any>>(observable: O, resultSelector: undefined): OperatorFunction<T, ObservedValueOf<O>>;
|
---|
5 | /** @deprecated */
|
---|
6 | export declare function concatMapTo<T, R, O extends ObservableInput<any>>(observable: O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.