UNPKG

@ebarooni/capacitor-calendar

Version:

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

23 lines (22 loc) 468 B
import type { RecurrenceFrequency } from '../types/recurrence-frequency'; /** * @since 7.1.0 */ export interface RecurrenceRule { /** * @since 7.1.0 */ frequency: RecurrenceFrequency; /** * How often it repeats (e.g. 1 for every occurrence, 2 for every second occurrence). * * @since 7.1.0 */ interval: number; /** * Timestamp of when the recurrence ends. * * @since 7.1.0 */ end?: number; }