| 8 | |
| 9 | // Define the structure of the file data |
| 10 | interface FileData { |
| 11 | name: string; |
| 12 | fileId?: string; |
| 13 | status?: 'uploading' | 'uploaded' | 'failed'; |
| 14 | } |
| 15 | |
| 16 | interface UploadFilesProps { |
| 17 | onFileIdUpdate: (fileId: string) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected