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