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
Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git]
/
packages
/
components
/
containers
/
autoReply
/
AutoReplyForm
/
interfaces.ts
blob
051a77ec569dfab262ad1d6bece5712d69da1993
1
export interface AutoReplyFormDate {
2
date?: Date;
3
time?: Date;
4
day?: number;
5
}
6
7
export interface AutoReplyFormModel {
8
message: string;
9
duration: number;
10
daysOfWeek: number[];
11
timezone: string;
12
subject: string;
13
enabled: boolean;
14
start: AutoReplyFormDate;
15
end: AutoReplyFormDate;
16
}