Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / calendar / Notification.ts
blob0c8fd8a4193206585a2bf82ce664bf29ffb86f07
1 import type { NOTIFICATION_TYPE_API, NOTIFICATION_UNITS, NOTIFICATION_WHEN } from '../../calendar/constants';
3 export interface NotificationModel {
4     id: string;
5     unit: NOTIFICATION_UNITS;
6     type: NOTIFICATION_TYPE_API;
7     when: NOTIFICATION_WHEN;
8     value?: number;
9     at?: Date;
10     isAllDay: boolean;