nxtcron - v1.0.1
    Preparing search index...

    Interface ParsedCronExpression

    A fully parsed cron expression.

    interface ParsedCronExpression {
        fields: Record<CronFieldName, ParsedField>;
        source: string;
    }
    Index

    Properties

    Properties

    fields: Record<CronFieldName, ParsedField>

    Parsed data for each cron field.

    source: string

    Original cron expression passed to the parser.