Acknowledgement
Comment
Consider adding TupleTypeReference interface to the API. It is available in Strada and particularly useful in combination with Checker#isTupleType():
function handleTuple(type: ts.TupleTypeReference) {
// ...
}
if (checker.isTupleType(type)) {
handleTuple(type as ts.TupleTypeReference);
}
Acknowledgement
Comment
Consider adding
TupleTypeReferenceinterface to the API. It is available in Strada and particularly useful in combination withChecker#isTupleType():