Test if a node is a BigIntKeyword.
Whether the given node appears to be a BigIntKeyword.
With TypeScript v5, in favor of typescript's isBigIntKeyword.
isBigIntKeyword
declare const node: ts.Node;if (isBigIntKeyword(node)) { // ...} Copy
declare const node: ts.Node;if (isBigIntKeyword(node)) { // ...}
Test if a node is a BigIntKeyword.