Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ScrapeData

import type { ScrapeData } from "https://raw.githubusercontent.com/rclarey/torrent/master/mod.ts";
type ScrapeData = {
complete: number;
downloaded: number;
incomplete: number;
infoHash: Uint8Array;
}
;

§Type

§
{
complete: number;
downloaded: number;
incomplete: number;
infoHash: Uint8Array;
}
[src]