TimelineKit API
    Preparing search index...

    Interface EntryDeletingArgs

    Event args for entry deletion. Cancelable.

    interface EntryDeletingArgs {
        cancel: boolean;
        entry: CalendarEntry;
        isRecurring: boolean;
        scope: "this" | "thisAndFollowing" | "all";
    }
    Index

    Properties

    cancel: boolean

    entry

    isRecurring: boolean

    Whether the entry belongs to a recurring series.

    scope: "this" | "thisAndFollowing" | "all"

    Scope of deletion for recurring entries: 'this' | 'thisAndFollowing' | 'all'. Defaults to 'all' for non-recurring entries. Subscribers can change this before the engine processes the deletion.