I have an interface in typescript
interface SomeInterface {
words: string[];
}
I use typescript TypeChecker when compiling to check property types and skip those who are string[]. There is a method in Typescript package to check if node is of array type
function isArrayTypeNode(node: Node): node is ArrayTypeNode;
But is it possible also to check if it is string array?