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