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