(type, isOptional)
| 67667 | exprType; |
| 67668 | } |
| 67669 | function removeMissingType(type, isOptional) { |
| 67670 | return exactOptionalPropertyTypes && isOptional ? removeType(type, missingType) : type; |
| 67671 | } |
| 67672 | function containsMissingType(type) { |
| 67673 | return exactOptionalPropertyTypes && (type === missingType || type.flags & 1048576 /* TypeFlags.Union */ && containsType(type.types, missingType)); |
| 67674 | } |
no test coverage detected
searching dependent graphs…