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