View, Import, and Export reminders!

This commit is contained in:
Bruno Bernardino
2024-03-30 12:54:49 +00:00
parent 0ffe4e03f1
commit 1a6cb96965
5 changed files with 161 additions and 15 deletions

View File

@@ -189,6 +189,7 @@ export interface CalendarEventAttendee {
export interface CalendarEventReminder {
uid?: string;
start_date: string;
type: 'email' | 'sound';
type: 'email' | 'sound' | 'display';
acknowledged_at?: string;
description?: string;
}