Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / hooks / GetDecryptedPassphraseAndCalendarKeys.ts
blob4c6a351d83c86a65afea9e1a4b2b076bf023b54f
1 import type { SessionKey } from '@proton/crypto';
3 import type { DecryptedCalendarKey } from '../calendar';
5 export type GetDecryptedPassphraseAndCalendarKeys = (calendarID: string) => Promise<{
6     decryptedCalendarKeys: DecryptedCalendarKey[];
7     decryptedPassphrase: string;
8     decryptedPassphraseSessionKey: SessionKey;
9     passphraseID: string;
10 }>;