/** * Type helper that extracts the return value from an async method * E.g. AsyncReturnValue<()=>Promise> will be evaluated as T */ export type AsyncReturnValue = T extends (...args: any[]) => PromiseLike ? U : never