(type)
| 67548 | return isTupleType(type) && !!(type.target.combinedFlags & 8 /* ElementFlags.Variadic */); |
| 67549 | } |
| 67550 | function isSingleElementGenericTupleType(type) { |
| 67551 | return isGenericTupleType(type) && type.target.elementFlags.length === 1; |
| 67552 | } |
| 67553 | function getRestTypeOfTupleType(type) { |
| 67554 | return getElementTypeOfSliceOfTupleType(type, type.target.fixedLength); |
| 67555 | } |
no test coverage detected