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