function Deno.writeFileimport { Deno } from "https://dotland.deno.dev/x/hono@v4.2.2/adapter/deno/deno.d.ts"; const { writeFile } = Deno; writeFile(path: string, data: Uint8Array): Promise<void>Write a new file, with the specified path and data. Write a new file, with the specified path and data. Parameterspath: stringThe path to the file to write. data: Uint8ArrayThe data to write to the file. ReturnsPromise<void>A promise that resolves when the file is written.