Interface ScheduledParams

Context passed to a scheduled (cron) handler.

interface ScheduledParams {
    ctx?: any;
    env?: any;
    event?: any;
    state: StateFn;
}

Properties

Properties

ctx?: any

Worker execution context.

env?: any

Worker environment bindings.

event?: any

The scheduled event provided by the Workers runtime.

state: StateFn

Factory for the Durable Object state accessor.

Generated using TypeDoc