Merge branch 'feat/rbf-wording' into 'main'
[ProtonMail-WebClient.git] / packages / drive-store / store / _devices / interface.ts
blob8b0b401618c07ddafc166bc79561f155c6bdb554
1 export interface Device {
2     id: string;
3     volumeId: string;
4     shareId: string;
5     linkId: string;
6     name: string;
7     modificationTime: number;
8     haveLegacyName: boolean;
11 export type DevicesState = {
12     [deviceId: string]: Device;