Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / hooks / GetCalendarInfo.ts
blob76f536f7fafe2efb5c8eed8c53b15126d2a878ca
1 import type { DecryptedKey } from '../Key';
2 import type { CalendarSettings, DecryptedCalendarKey } from '../calendar';
4 export type GetCalendarInfo = (ID: string) => Promise<{
5     memberID: string;
6     addressID: string;
7     addressKeys: DecryptedKey[];
8     calendarKeys: DecryptedCalendarKey[];
9     calendarSettings: CalendarSettings;
10     passphrase: string;
11     passphraseID: string;
12 }>;