cron-js-parser
Version:
Cron expression parser to human readable format from Expression as well as Individual values
12 lines (11 loc) • 377 B
TypeScript
import * as CronTypes from "../types/composites";
type QuartzCronObj = {
seconds: CronTypes.CronValues;
minutes: CronTypes.CronValues;
hours: CronTypes.CronValues;
daysOfMonth?: CronTypes.CronValues;
months: CronTypes.CronValues;
daysOfWeek?: CronTypes.DaysOfWeekCronValues;
years?: CronTypes.CronValues;
};
export default QuartzCronObj;