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