AwaitableSummaryRepresents a type that may or may not be a promisedeclare type Awaitable<T> = PromiseLike<T> | T;declare type Awaitable<T> = PromiseLike<T> | T;Type ParametersNameConstraintsOptionalDefaultDescriptionTNoNone