source: trip-planner-front/node_modules/rxjs/internal/operators/combineAll.d.ts@ 8d391a1

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

initial commit

  • Property mode set to 100644
File size: 434 bytes
Line 
1import { OperatorFunction, ObservableInput } from '../types';
2export declare function combineAll<T>(): OperatorFunction<ObservableInput<T>, T[]>;
3export declare function combineAll<T>(): OperatorFunction<any, T[]>;
4export declare function combineAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>;
5export declare function combineAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>;
Note: See TracBrowser for help on using the repository browser.