ts-type-explorer
ts-type-explorer copied to clipboard
Type parameters sometimes not resolved
In many circumstances, type parameters are not resolved, even if type arguments are. For example:
declare function name(): Promise<void>;
The return type here will show void as a type argument, but will not display T, the relevant type parameter.
Thanks to @Didas-git for pointing this out!