frontend/.pnpm-store/v3/files/aa/1456a0e30f349b0030e0fe599bac6ba2ace03b4e247c3233b16144748433f71551ca85f9dd6a73f614f9f499c93f8bae1e1051fb53c5aa84cda203fe20d9ce

9 lines
416 B
Plaintext

import { Observable } from '../Observable';
import { SchedulerLike } from '../types';
/**
* Used in {@link scheduled} to create an observable from an Iterable.
* @param input The iterable to create an observable from
* @param scheduler The scheduler to use
*/
export declare function scheduleIterable<T>(input: Iterable<T>, scheduler: SchedulerLike): Observable<T>;
//# sourceMappingURL=scheduleIterable.d.ts.map