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