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

    Event data for building calendar URLs

    interface CalendarLinkEvent {
        description?: string;
        endTime?: Date;
        location?: string;
        recurrence?: {
            dayOfMonth?: number;
            daysOfWeek?: number[];
            endDate?: string | Date;
            interval: number;
            occurrences?: number;
            pattern: "daily" | "weekly" | "monthly";
        };
        startTime: Date;
        title: string;
    }
    Index

    Properties

    description?: string

    Event description

    endTime?: Date

    Event end time

    location?: string

    Event location or URL

    recurrence?: {
        dayOfMonth?: number;
        daysOfWeek?: number[];
        endDate?: string | Date;
        interval: number;
        occurrences?: number;
        pattern: "daily" | "weekly" | "monthly";
    }

    Recurrence configuration

    startTime: Date

    Event start time

    title: string

    Event title