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

Bencodeable

import type { Bencodeable } from "https://raw.githubusercontent.com/rclarey/bt/master/mod.ts";

Data that is able to be bencoded

type Bencodeable =
| string
| Uint8Array
| number
| Map<Uint8Array, Bencodeable>;

§Type

§
string | Uint8Array | number | BencodeableList | BencodeableDict | Map<Uint8Array, Bencodeable>
[src]