TimelineKit API
    Preparing search index...

    Interface CalendarIcsImportResult

    interface CalendarIcsImportResult {
        calendar: Calendar | null;
        items: CalendarItem[];
        skippedCount: number;
        warnings: string[];
    }
    Index

    Properties

    calendar: Calendar | null

    Created calendar (if createCalendar was true and metadata was present).

    items: CalendarItem[]

    Imported items (master events only, with exceptions attached).

    skippedCount: number

    Count of components that were skipped (unsupported types, parse errors).

    warnings: string[]

    Non-fatal warnings encountered during parsing.