type alias Iteratorimport { type Iterator } from "https://deno.land/x/ahh@v0.8.1/src/iter/mod.ts"; An interface for dealing with iterators. Type ParametersTdefinition: { next: () => Option<T>; } & Iterable<T>