UNPKG

@ebarooni/capacitor-calendar

Version:

A capacitor plugin for managing calendar events on iOS and Android, with reminders support on iOS.

19 lines (18 loc) 315 B
import { EventSpan } from "../enums/event-span"; /** * @since 7.1.0 */ export interface DeleteEventOptions { /** * @since 7.1.0 */ id: string; /** * The span of deletion. * * @default EventSpan.THIS_EVENT * @platform iOS * @see 7.1.0 */ span?: EventSpan; }