UNPKG

@composio/core

Version:

![Composio Banner](https://github.com/user-attachments/assets/9ba0e9c1-85a4-4b51-ae60-f9fe7992e819)

17 lines 338 B
//#region src/types/files.types.d.ts type FileUploadData = { name: string; mimetype: string; s3key: string; }; type FileDownloadData = { name: string; mimeType: string; s3Url: string; /** * @todo: actually, this can be null. */ filePath: string; }; //#endregion export { FileUploadData as n, FileDownloadData as t };