Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / hooks / GetCalendarEventRaw.ts
blob6dde95a24ff6f64a2cb7b9ee97993847ba987a6c
1 import type { EVENT_VERIFICATION_STATUS } from '../../calendar/constants';
2 import type { CalendarEvent, CalendarEventEncryptionData, SelfAddressData, VcalVeventComponent } from '../calendar';
4 export type GetCalendarEventRaw = (Event: CalendarEvent) => Promise<{
5     veventComponent: VcalVeventComponent;
6     hasDefaultNotifications: boolean;
7     verificationStatus: EVENT_VERIFICATION_STATUS;
8     selfAddressData: SelfAddressData;
9     encryptionData: CalendarEventEncryptionData;
10 }>;