Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / shared / lib / interfaces / drive / photos.ts
blob877c9c9a4a9505999bd9395ab39e6dfd62f29ff8
1 import type { LinkState } from '@proton/shared/lib/interfaces/drive/link';
3 export interface Photo {
4     LinkID: string;
5     CaptureTime: number;
6     MainPhotoLinkID: string | null;
7     Exif: string | null;
8     Hash: string | null;
9     ContentHash: string | null;
10     RelatedPhotosLinkIDs?: string[] | null;
13 export interface DuplicatePhotosHash {
14     Hash: string;
15     ContentHash: string;
16     LinkState: LinkState;
17     ClientUID: string;
18     LinkID: string;
19     RevisionID: number;