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