);
}
```
## TUS Resumable Upload
For large files (>500MB). `npm install tus-js-client`
```typescript
import * as tus from 'tus-js-client';
async function uploadWithTUS(file: File, uploadURL: string, onProgress?: (pct: number) => void) {
return new Promise