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) 301 B
import { CalendarSourceType } from "../enums/calendar-source-type"; /** * @since 7.1.0 */ export interface CalendarSource { /** * @since 7.1.0 */ type: CalendarSourceType; /** * @since 7.1.0 */ id: string; /** * @since 7.1.0 */ title: string; }