Added interface that represents an uploaded file

This commit is contained in:
Kir_Antipov 2023-04-01 14:01:33 +00:00
parent 90564b0aa2
commit 7fad565f52

View file

@ -0,0 +1,19 @@
/**
* Represents an uploaded file.
*/
export interface UploadedFile {
/**
* The unique identifier of the file.
*/
id: number | string;
/**
* The display name of the file.
*/
name: string;
/**
* The URL to download the file.
*/
url: string;
}