Library API
    Preparing search index...

    Interface CronField

    Represents a single parsed cron field with its allowed values and restriction status.

    interface CronField {
        allowed: Set<number>;
        restricted: boolean;
    }
    Index
    allowed: Set<number>
    restricted: boolean