Library API
    Preparing search index...

    Interface CronSchedule

    Represents a fully parsed cron schedule with all five time fields.

    interface CronSchedule {
        daysOfMonth: CronField;
        daysOfWeek: CronField;
        hours: CronField;
        minutes: CronField;
        months: CronField;
    }
    Index
    daysOfMonth: CronField
    daysOfWeek: CronField
    hours: CronField
    minutes: CronField
    months: CronField