Skip to content

Type Alias: Awaitable<T> ​

Awaitable type.

Signature ​

ts
export type Awaitable<T> = T | Promise<T>

Type Parameters ​

NameDescription
TThe type of the value that can be awaited.

Released under the MIT License.