repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
shared
/
lib
/
interfaces
/
calendar
/
Notification.ts
blob
0c8fd8a4193206585a2bf82ce664bf29ffb86f07
1
import type { NOTIFICATION_TYPE_API, NOTIFICATION_UNITS, NOTIFICATION_WHEN } from '../../calendar/constants';
2
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;
11
}