mirror of
https://github.com/immich-app/immich.git
synced 2025-04-15 12:16:52 +02:00
* Implemented lazy loading thumbnail * Display assets as date-time grouping * Update Readme * Modify GitHub action to run from the latest update
54 lines
1013 B
TypeScript
54 lines
1013 B
TypeScript
export enum AssetType {
|
|
IMAGE = 'IMAGE',
|
|
VIDEO = 'VIDEO',
|
|
AUDIO = 'AUDIO',
|
|
OTHER = 'OTHER',
|
|
}
|
|
|
|
export type ImmichExif = {
|
|
id: string;
|
|
assetId: string;
|
|
make: string;
|
|
model: string;
|
|
imageName: string;
|
|
exifImageWidth: number;
|
|
exifImageHeight: number;
|
|
fileSizeInByte: number;
|
|
orientation: string;
|
|
dateTimeOriginal: Date;
|
|
modifyDate: Date;
|
|
lensModel: string;
|
|
fNumber: number;
|
|
focalLength: number;
|
|
iso: number;
|
|
exposureTime: number;
|
|
latitude: number;
|
|
longitude: number;
|
|
city: string;
|
|
state: string;
|
|
country: string;
|
|
}
|
|
|
|
export type ImmichAssetSmartInfo = {
|
|
id: string;
|
|
assetId: string;
|
|
tags: string[];
|
|
objects: string[];
|
|
}
|
|
|
|
export type ImmichAsset = {
|
|
id: string;
|
|
deviceAssetId: string;
|
|
userId: string;
|
|
deviceId: string;
|
|
type: AssetType;
|
|
originalPath: string;
|
|
resizePath: string;
|
|
createdAt: string;
|
|
modifiedAt: string;
|
|
isFavorite: boolean;
|
|
mimeType: string;
|
|
duration: string;
|
|
exifInfo?: ImmichExif;
|
|
smartInfo?: ImmichAssetSmartInfo;
|
|
} |