@lou.codes/cron
Version:
⏲️ Cron Quartz and Cron UNIX expression parser
31 lines (30 loc) • 810 B
TypeScript
/**
* Name of a minute field in the object representation of a cron expression.
*
* @category Cron Object
*/
export declare const MINUTE_NAME = "minute";
/**
* Name of a hour field in the object representation of a cron expression.
*
* @category Cron Object
*/
export declare const HOUR_NAME = "hour";
/**
* Name of a day of month field in the object representation of a cron expression.
*
* @category Cron Object
*/
export declare const DAY_OF_MONTH_NAME = "dayOfMonth";
/**
* Name of a month field in the object representation of a cron expression.
*
* @category Cron Object
*/
export declare const MONTH_NAME = "month";
/**
* Name of a day of week field in the object representation of a cron expression.
*
* @category Cron Object
*/
export declare const DAY_OF_WEEK_NAME = "dayOfWeek";