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

SchedulerLike

SCHEDULER INTERFACES

interface SchedulerLike extends TimestampProvider {
schedule<T>(
work: (this: SchedulerAction<T>, state: T) => void,
delay: number,
state: T,
): Subscription;
schedule<T>(
work: (this: SchedulerAction<T>, state?: T) => void,
delay: number,
state?: T,
): Subscription;
schedule<T>(
work: (this: SchedulerAction<T>, state?: T) => void,
delay?: number,
state?: T,
): Subscription;
}

§Extends

§Methods

§
schedule<T>(
work: (this: SchedulerAction<T>, state: T) => void,
delay: number,
state: T,
): Subscription
[src]
§
schedule<T>(
work: (this: SchedulerAction<T>, state?: T) => void,
delay: number,
state?: T,
): Subscription
[src]
§
schedule<T>(
work: (this: SchedulerAction<T>, state?: T) => void,
delay?: number,
state?: T,
): Subscription
[src]