Uploads files based on the provided options.
import { upload } from "thirdweb/storage";const uris = await upload({ client, files: [new File(["hello world"], "hello.txt")],});
A promise that resolves to an array of uploaded file URIs.