Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/tsc/dts/lib.deno.unstable.d.ts>Deno.CronScheduleExpression

A modern runtime for JavaScript and TypeScript.
Latest
type alias Deno.CronScheduleExpression
import { type Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.unstable.d.ts";
const { CronScheduleExpression } = Deno;

UNSTABLE: New API, yet to be vetted.

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; }