UNPKG

expo-calendar

Version:

Provides an API for interacting with the device's system calendars, events, reminders, and associated records.

15 lines (13 loc) 490 B
import type { RecurrenceRule as ExpoCalendarRecurrenceRule } from '../legacy/Calendar'; export type RecurrenceRule = { /** * Date on which the calendar item should stop recurring; overrides `occurrence` if both are specified. * Null if it is `occurrence` based. */ endDate?: string | Date | null; /** * Number of times the calendar item should recur before stopping. * Null if it is `endDate` based. */ occurrence?: number | null; } & ExpoCalendarRecurrenceRule;