feat: initial commit
This commit is contained in:
5
node_modules/rxjs/internal/operators/combineAll.d.ts
generated
vendored
Normal file
5
node_modules/rxjs/internal/operators/combineAll.d.ts
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { OperatorFunction, ObservableInput } from '../types';
|
||||
export declare function combineAll<T>(): OperatorFunction<ObservableInput<T>, T[]>;
|
||||
export declare function combineAll<T>(): OperatorFunction<any, T[]>;
|
||||
export declare function combineAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>;
|
||||
export declare function combineAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>;
|
Reference in New Issue
Block a user