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