@ebarooni/capacitor-calendar
Version:
A capacitor plugin for managing calendar events on iOS and Android, with reminders support on iOS.
27 lines (26 loc) • 444 B
TypeScript
/**
* @platform Android, iOS
* @since 7.1.0
*/
export declare enum EventStatus {
/**
* @platform iOS
* @since 7.1.0
*/
NONE = "none",
/**
* @platform Android, iOS
* @since 7.1.0
*/
CONFIRMED = "confirmed",
/**
* @platform Android, iOS
* @since 7.1.0
*/
TENTATIVE = "tentative",
/**
* @platform Android, iOS
* @since 7.1.0
*/
CANCELED = "canceled"
}