Library API
    Preparing search index...

    Interface ParsedRRule

    Parsed structure of an RFC 5545 Recurrence Rule string.

    interface ParsedRRule {
        byDay?: { day: string; nth?: number }[];
        byHour?: number[];
        byMinute?: number[];
        byMonth?: number[];
        bySetPos?: number[];
        count?: number;
        freq: string;
        interval: number;
        untilMs?: number;
    }
    Index
    byDay?: { day: string; nth?: number }[]

    Day-of-week specifications from BYDAY with optional nth occurrences

    byHour?: number[]

    Hour filters (0..23) from BYHOUR

    byMinute?: number[]

    Minute filters (0..59) from BYMINUTE

    byMonth?: number[]

    Filter months (1..12) from BYMONTH

    bySetPos?: number[]

    Set position selectors from BYSETPOS

    count?: number

    Maximum number of occurrences to generate, if bounded by COUNT

    freq: string

    Frequency unit: DAILY, WEEKLY, MONTHLY, or YEARLY

    interval: number

    Inter-occurrence interval count (default: 1)

    untilMs?: number

    Bounded end timestamp in epoch milliseconds, if bounded by UNTIL