diff --git a/src/platforms/uploaded-file.ts b/src/platforms/uploaded-file.ts new file mode 100644 index 0000000..90b410a --- /dev/null +++ b/src/platforms/uploaded-file.ts @@ -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; +}