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