@lou.codes/cron
Version:
⏲️ Cron Quartz and Cron UNIX expression parser
12 lines (11 loc) • 385 B
TypeScript
import type { ListExpressionSeparatorToken } from "./ListExpressionSeparatorToken.js";
import type { ValueOrRangeString } from "./ValueOrRangeString.js";
/**
* Type that represents a list of values for a cron string field.
*
* @category Cron String
*
* @see {@link ValueOrRangeString}
*/
export type ListString =
`${string}${ListExpressionSeparatorToken}${ValueOrRangeString}`;