Skip to main content
type alias Deno.CronScheduleExpression
unstable

CronScheduleExpression is used as the type of minute, hour, dayOfMonth, month, and dayOfWeek in CronSchedule.

Definition

number
| { exact: number | number[]; }
| { start?: number; end?: number; every?: number; }
Back to top