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