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