Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/legacy/mod.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.20.41/legacy/mod.ts";

Something that is either a promise or an iterable.

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