UNPKG

@lou.codes/cron

Version:

⏲️ Cron Quartz and Cron UNIX expression parser

9 lines (8 loc) 256 B
import type { RangeField } from "./RangeField.js"; /** * Union of a set of numbers and a {@link RangeField} with that same set of * numbers. * * @category Cron Object */ export type ValueOrRangeField<Value extends number> = RangeField<Value> | Value;