You should be able to something like this: ```ts await fetch("https://some.url/", { method: "POST"

You should be able to something like this:
await fetch("https://some.url/", {
  method: "POST",
  body: formData.get("audio").stream()
});
Was this page helpful?