typescript 5.3.0-dev.20230928 → 5.3.0-dev.20230930
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tsc.js +138 -30
- package/lib/tsserver.js +178 -996
- package/lib/typescript.d.ts +4 -1
- package/lib/typescript.js +175 -999
- package/lib/typingsInstaller.js +6 -5
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -5646,7 +5646,10 @@ declare namespace ts {
|
|
|
5646
5646
|
readonly typeArguments?: NodeArray<TypeNode>;
|
|
5647
5647
|
readonly template: TemplateLiteral;
|
|
5648
5648
|
}
|
|
5649
|
-
|
|
5649
|
+
interface InstanceofExpression extends BinaryExpression {
|
|
5650
|
+
readonly operatorToken: Token<SyntaxKind.InstanceOfKeyword>;
|
|
5651
|
+
}
|
|
5652
|
+
type CallLikeExpression = CallExpression | NewExpression | TaggedTemplateExpression | Decorator | JsxOpeningLikeElement | InstanceofExpression;
|
|
5650
5653
|
interface AsExpression extends Expression {
|
|
5651
5654
|
readonly kind: SyntaxKind.AsExpression;
|
|
5652
5655
|
readonly expression: Expression;
|