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

IterablePubkeys

import type { IterablePubkeys } from "https://gitlab.com/soapbox-pub/strfry-policies/-/raw/develop/mod.ts";

Sync or async iterable of pubkeys, designed for efficiently loading from large files.

type IterablePubkeys = Iterable<string> | AsyncIterable<string>;

§Type

§
Iterable<string> | AsyncIterable<string>
[src]