SyncIteratorCopyimport type { SyncIterator } from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.28.2/nats-base-client/internal_mod.ts";type SyncIterator<T> = {next(): Promise<T | null>; };§Type Parameters§T[src]§Type§{next(): Promise<T | null>; }[src]