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