(type)
| 69700 | errorType; |
| 69701 | } |
| 69702 | function includeUndefinedInIndexSignature(type) { |
| 69703 | if (!type) |
| 69704 | return type; |
| 69705 | return compilerOptions.noUncheckedIndexedAccess ? |
| 69706 | getUnionType([type, undefinedType]) : |
| 69707 | type; |
| 69708 | } |
| 69709 | function getTypeOfDestructuredSpreadExpression(type) { |
| 69710 | return createArrayType(checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */, type, undefinedType, /*errorNode*/ undefined) || errorType); |
| 69711 | } |
no test coverage detected
searching dependent graphs…