Test if a type is a TypeParameter.
TypeParameter
Note: It is intentional that this is not a type guard.
https://github.com/JoshuaKGoldberg/ts-api-utils/issues/382
declare const type: ts.Type;if (isTypeParameter(type)) { // ...} Copy
declare const type: ts.Type;if (isTypeParameter(type)) { // ...}
Test if a type is a
TypeParameter.Note: It is intentional that this is not a type guard.