Test if a type is a TypeParameter.
TypeParameter
declare const type: ts.Type;if (isTypeParameter(type)) { // ...} Copy
declare const type: ts.Type;if (isTypeParameter(type)) { // ...}
Test if a type is a
TypeParameter
.