@ebarooni/capacitor-calendar
    Preparing search index...

    Interface DeleteEventsByIdOptions

    7.1.0

    interface DeleteEventsByIdOptions {
        commit?: boolean;
        ids: string[];
        span?: EventSpan;
    }
    Index

    Properties

    Properties

    commit?: boolean

    Whether to save the deletion to the event store immediately. Pass false to batch multiple changes and commit them together using CapacitorCalendar.commit(), which is more efficient than committing each save individually.

    false
    
    true
    

    iOS

    8.3.0

    ids: string[]

    7.1.0

    span?: EventSpan

    How much of a recurring series to delete. On Android, THIS_EVENT cannot target a single recurring occurrence here — use deleteEvent with instanceDate. Those ids are reported in failed.

    EventSpan.THIS_EVENT
    
    EventSpan.THIS_EVENT
    

    Android, iOS

    7.1.0