Test if a node is an UnparsedSyntheticReference.
UnparsedSyntheticReference
Whether the given node appears to be an UnparsedSyntheticReference.
With TypeScript v5
declare const node: ts.Node;if (isUnparsedSyntheticReference(node)) { // ...} Copy
declare const node: ts.Node;if (isUnparsedSyntheticReference(node)) { // ...}
Test if a node is an
UnparsedSyntheticReference
.