Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / IncomingDefault.ts
blob2de0c8e5b585728e0bebb9656413668880727a37
1 import type { INCOMING_DEFAULTS_LOCATION } from '../constants';
3 export interface IncomingDefault {
4     ID: string;
5     Email?: string;
6     Domain?: string;
7     Location: INCOMING_DEFAULTS_LOCATION;
8     Type: number;
9     Time: number;
12 export type IncomingDefaultStatus = 'not-loaded' | 'pending' | 'loaded' | 'rejected';