Type Alias AwaitRet<T>

Source
Expand description

Shorthand for Awaited<ReturnType>

type AwaitRet<T> = T extends (...args: any[]) => infer R ? Awaited<R> : never