ical-generator - v10.0.0-develop.4
    Preparing search index...

    Interface ICalAlarmBaseData

    interface ICalAlarmBaseData {
        attach?: string | ICalAttachment | null;
        attendees?: ICalAttendee[] | ICalAttendeeData[];
        description?: string | null;
        relatesTo?: ICalAlarmRelatesTo | null;
        repeat?: ICalAlarmRepeatData | null;
        summary?: string | null;
        type?: ICalAlarmType;
        x?:
            | [string, string][]
            | Record<string, string>
            | { key: string; value: string }[];
    }
    Index

    Properties

    attach?: string | ICalAttachment | null
    attendees?: ICalAttendee[] | ICalAttendeeData[]
    description?: string | null
    relatesTo?: ICalAlarmRelatesTo | null
    repeat?: ICalAlarmRepeatData | null
    summary?: string | null
    x?:
        | [string, string][]
        | Record<string, string>
        | { key: string; value: string }[]