mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 09:13:17 +03:00
7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
|
|
export type UploadAsset = {
|
||
|
|
id: string;
|
||
|
|
file: File;
|
||
|
|
progress: number;
|
||
|
|
fileExtension: string;
|
||
|
|
};
|