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