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
/
shared
/
lib
/
interfaces
/
securityCheckup
/
SecurityState.ts
blob
90ea62777393aa3ef372ffdd17e24afd06ec7409
1
export default interface SecurityState {
2
phrase: {
3
isAvailable: boolean;
4
isSet: boolean;
5
isOutdated: boolean;
6
};
7
email: {
8
value?: string;
9
isEnabled: boolean;
10
verified: boolean;
11
};
12
phone: {
13
value?: string;
14
isEnabled: boolean;
15
verified: boolean;
16
};
17
deviceRecovery: {
18
isAvailable: boolean;
19
isEnabled: boolean;
20
};
21
}