Skip to main content
Module

x/rimbu/mod.ts>MaybePromise

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
type alias MaybePromise
Re-export
import { type MaybePromise } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

A type that is either a value T or a promise yielding a value of type T.

definition: T | Promise<T>