typealias Awaitable

export type Awaitable<T> = PromiseLike<T> | T;

Represents a type that may or may not be a promise

Type Parameters

T

Union Members

PromiseLike<T> T