Interface IHTTPScrapeResponse

interface IHTTPScrapeResponse {
    files: {
        complete: bigint;
        downloaded: bigint;
        incomplete: bigint;
        infoHash: string;
    }[];
    interval: number;
}

Properties

Properties

files: {
    complete: bigint;
    downloaded: bigint;
    incomplete: bigint;
    infoHash: string;
}[]

Type declaration

  • complete: bigint
  • downloaded: bigint
  • incomplete: bigint
  • infoHash: string
interval: number