1 import type { EncryptionPreferences } from '../../mail/encryptionPreferences';
2 import type { ContactEmail } from '../contacts';
4 export type GetEncryptionPreferences = ({
12 * Whether the preferences are used in the context of email encryption.
13 * If true, internal keys with e2ee disabled are not returned.
15 intendedForEmail?: boolean;
17 contactEmailsMap?: { [email: string]: ContactEmail | undefined };
18 }) => Promise<EncryptionPreferences>;