typealias Awaitable

export declare type Awaitable<T> = T | Promise<T>;

Type Parameters

T

Union Members

T Promise<T>