Hiyve Components - v1.0.0
    Preparing search index...

    Recurrence configuration

    interface RecurrenceConfig {
        dayOfMonth?: number;
        daysOfWeek?: number[];
        endDate?: string | Date;
        interval: number;
        occurrences?: number;
        pattern: RecurrencePattern;
    }
    Index

    Properties

    dayOfMonth?: number

    Day of month for monthly recurrence

    daysOfWeek?: number[]

    Days of week for weekly recurrence (0-6, Sunday-Saturday)

    endDate?: string | Date

    End date for the recurrence (mutually exclusive with occurrences)

    interval: number

    Interval between occurrences (e.g., every 2 weeks)

    occurrences?: number

    Number of occurrences before stopping (mutually exclusive with endDate)

    Recurrence pattern (daily, weekly, monthly)