If I have an array of type string[] and I want to extract the type from the array, I must do:
const typeArgs = type.typeArguments;
typeArgs[0]; // string
But what if I have a tuple of type [number, string] and want to get the type union of string | number?
Getting the individual element types of a tuple type is the similar to getting the element of an array type—use the
typeArgumentsproperty:If you have access to the
elnode then you can get it and ask what it's type is (TypeChecker#getTypeAtLocation). If you don't have access then, for what I know, it is not possible to createTypeobjects using the compiler API. Instead, I would suggest to create your own representation of that transformation based on thetypeArgumentsproperty and use that in your code.