import { Client } from "https://deno.land/x/mtkruto@0.1.117/mod.ts";
Download a file.
Examples
Example 1
Example 1
for await (const chunk of client.download(fileId, { chunkSize: 256 * 1024 })) {
await outFile.write(chunk);
}
import { Client } from "https://deno.land/x/mtkruto@0.1.117/mod.ts";
Download a file.
Example 1
for await (const chunk of client.download(fileId, { chunkSize: 256 * 1024 })) {
await outFile.write(chunk);
}