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
/
IncomingDefault.ts
blob
2de0c8e5b585728e0bebb9656413668880727a37
1
import type { INCOMING_DEFAULTS_LOCATION } from '../constants';
2
3
export interface IncomingDefault {
4
ID: string;
5
Email?: string;
6
Domain?: string;
7
Location: INCOMING_DEFAULTS_LOCATION;
8
Type: number;
9
Time: number;
10
}
11
12
export type IncomingDefaultStatus = 'not-loaded' | 'pending' | 'loaded' | 'rejected';