1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2025-01-07 17:16:45 +01:00
immich-public-proxy/src/types.ts

20 lines
268 B
TypeScript
Raw Normal View History

2024-10-28 20:47:14 +01:00
export enum AssetType {
image = 'IMAGE',
video = 'VIDEO'
}
export interface Asset {
2024-10-28 09:56:11 +01:00
id: string;
2024-10-28 20:47:14 +01:00
type: AssetType;
2024-10-28 09:56:11 +01:00
}
export interface SharedLink {
key: string;
2024-10-28 20:47:14 +01:00
assets: Asset[]
}
export enum ImageSize {
thumbnail = 'thumbnail',
original = 'original'
2024-10-28 09:56:11 +01:00
}