Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
⏳ Fantastic cron parser and constructor.
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
JSR Score
100%
Published
2 months ago (0.3.3)
import type { ReadonlyArray } from "jsr:@coven/types@^0.3.3"; import type { ValueOrRangeField } from "./ValueOrRangeField.ts"; /** * Type that represents a list of values for a cron object field. * * @see {@linkcode ValueOrRangeField} */ export type ListField<Value extends number> = ReadonlyArray< ValueOrRangeField<Value> >;