(type, flags)
| 61103 | } |
| 61104 | // Return count of ending consecutive tuple elements of the given kind(s) |
| 61105 | function getEndElementCount(type, flags) { |
| 61106 | return type.elementFlags.length - ts.findLastIndex(type.elementFlags, function (f) { return !(f & flags); }) - 1; |
| 61107 | } |
| 61108 | function getTypeFromOptionalTypeNode(node) { |
| 61109 | return addOptionality(getTypeFromTypeNode(node.type), /*isProperty*/ true); |
| 61110 | } |
no outgoing calls
no test coverage detected