Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
434 bytes
|
Line | |
---|
1 | import { OperatorFunction, ObservableInput } from '../types';
|
---|
2 | export declare function combineAll<T>(): OperatorFunction<ObservableInput<T>, T[]>;
|
---|
3 | export declare function combineAll<T>(): OperatorFunction<any, T[]>;
|
---|
4 | export declare function combineAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>;
|
---|
5 | export declare function combineAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.