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 { AllToken } from "./AllToken.ts"; import type { ListString } from "./ListString.ts"; import type { ValueOrRangeString } from "./ValueOrRangeString.ts"; /** * Union of {@linkcode AllToken}, {@linkcode ValueOrRangeString} and {@linkcode ListString} * that represents a field in a cron expression. * * @see {@linkcode AllToken} * @see {@linkcode ValueOrRangeString} * @see {@linkcode ListString} */ export type FieldString = AllToken | ListString | ValueOrRangeString;