Skip to main content
Module

x/proc/mod1.ts>PromiseOrIterable

A better way to work with processes in Deno.
Go to Latest
type alias PromiseOrIterable
import { type PromiseOrIterable } from "https://deno.land/x/proc@0.21.8/mod1.ts";

Something that is either a promise or an iterable.

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