Skip to content
Type

MaybePromise

T or a promise that resolves to T.

ts
type MaybePromise<T> = T | Promise<T>;

Used by

Released under the Mozilla Public License 2.0.