Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

scheduled

Converts from a common ObservableInput type to an observable where subscription and emissions are scheduled on the provided scheduler.

function scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T>;
§
scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T>
[src]

§Type Parameters

§Parameters

§

The observable, array, promise, iterable, etc you would like to schedule

§

The scheduler to use to schedule the subscription and emissions from the returned observable.

§Return Type