source: trip-planner-front/node_modules/rxjs/internal/scheduled/scheduled.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: 566 bytes
Line 
1import { ObservableInput, SchedulerLike, Observable } from 'rxjs';
2/**
3 * Converts from a common {@link ObservableInput} type to an observable where subscription and emissions
4 * are scheduled on the provided scheduler.
5 *
6 * @see from
7 * @see of
8 *
9 * @param input The observable, array, promise, iterable, etc you would like to schedule
10 * @param scheduler The scheduler to use to schedule the subscription and emissions from
11 * the returned observable.
12 */
13export declare function scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T>;
Note: See TracBrowser for help on using the repository browser.