@composio/core
Version:

17 lines • 338 B
text/typescript
//#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 };