Type Alias MaybePromise<T>

MaybePromise<T>: PromiseLike<T> | T

A type which may either be a direct instance of T or a promise that resolves to T.

Type Parameters

  • T