3 lines
161 B
TypeScript
Raw Normal View History

import { OperatorFunction, ObservableInput } from '../types';
export declare function mergeAll<T>(concurrent?: number): OperatorFunction<ObservableInput<T>, T>;