Module

x/proc/legacy/mod.ts>PromiseOrIterable

A better way to work with processes in Deno.
Very Popular
Latest
type alias PromiseOrIterable
import { type PromiseOrIterable } from "https://dotland.deno.dev/x/proc@0.21.9/legacy/mod.ts";

Something that is either a promise or an iterable.

definition: B extends AsyncIterable<unknown> ? B : Promise<B>