const reader = response.body?.getReader(); const contentLength = Number(response.headers.get("Content-Length")); const chunks: Uint8Array[] = [];
const startDownload = async () => setStatus("downloading"); const response = await fetch(url); if (!response.ok) return setStatus("error");
setStatus("ready"); ;