Test if a node is a VariableLikeDeclaration.
VariableLikeDeclaration
Whether the given node appears to be a VariableLikeDeclaration.
declare const node: ts.Node;if (isVariableLikeDeclaration(node)) { // ...} Copy
declare const node: ts.Node;if (isVariableLikeDeclaration(node)) { // ...}
Test if a node is a
VariableLikeDeclaration
.