You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1160,18 +1156,25 @@ export function canHaveIllegalModifiers(node: Node): node is HasIllegalModifiers
1160
1156
||kind===SyntaxKind.NamespaceExportDeclaration;
1161
1157
}
1162
1158
1163
-
/** @internal */
1164
-
exportconstisTypeNodeOrTypeParameterDeclaration=or(isTypeNode,isTypeParameterDeclaration)as(node: Node)=>node is TypeNode|TypeParameterDeclaration;
1165
-
/** @internal */
1166
-
exportconstisQuestionOrExclamationToken=or(isQuestionToken,isExclamationToken)as(node: Node)=>node is QuestionToken|ExclamationToken;
1167
-
/** @internal */
1168
-
exportconstisIdentifierOrThisTypeNode=or(isIdentifier,isThisTypeNode)as(node: Node)=>node is Identifier|ThisTypeNode;
1169
-
/** @internal */
1170
-
exportconstisReadonlyKeywordOrPlusOrMinusToken=or(isReadonlyKeyword,isPlusToken,isMinusToken)as(node: Node)=>node is ReadonlyKeyword|PlusToken|MinusToken;
1171
-
/** @internal */
1172
-
exportconstisQuestionOrPlusOrMinusToken=or(isQuestionToken,isPlusToken,isMinusToken)as(node: Node)=>node is QuestionToken|PlusToken|MinusToken;
1173
-
/** @internal */
1174
-
exportconstisModuleName=or(isIdentifier,isStringLiteral)as(node: Node)=>node is ModuleName;
1159
+
exportfunctionisQuestionOrExclamationToken(node: Node): node is QuestionToken|ExclamationToken{
0 commit comments