Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / hooks / GetVerificationPreferences.ts
blob4cd78b72465c4251f54bd743409a2272cf913cb5
1 import type { VerificationPreferences } from '../VerificationPreferences';
2 import type { ContactEmail } from '../contacts';
4 export type GetVerificationPreferences = ({
5     email,
6     lifetime,
7     contactEmailsMap,
8 }: {
9     email: string;
10     lifetime?: number;
11     contactEmailsMap?: { [email: string]: ContactEmail | undefined };
12 }) => Promise<VerificationPreferences>;