@typescript-deploys/pr-build 5.0.0-pr-52240-9 → 5.0.0-pr-52280-2
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 +198 -118
- package/lib/tsserver.js +244 -136
- package/lib/tsserverlibrary.d.ts +19 -10
- package/lib/tsserverlibrary.js +237 -136
- package/lib/typescript.d.ts +19 -10
- package/lib/typescript.js +230 -136
- package/lib/typingsInstaller.js +75 -42
- package/package.json +1 -1
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -4335,14 +4335,15 @@ declare namespace ts {
|
|
|
4335
4335
|
JSDocSeeTag = 350,
|
|
4336
4336
|
JSDocPropertyTag = 351,
|
|
4337
4337
|
JSDocThrowsTag = 352,
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4338
|
+
JSDocSatisfiesTag = 353,
|
|
4339
|
+
SyntaxList = 354,
|
|
4340
|
+
NotEmittedStatement = 355,
|
|
4341
|
+
PartiallyEmittedExpression = 356,
|
|
4342
|
+
CommaListExpression = 357,
|
|
4343
|
+
MergeDeclarationMarker = 358,
|
|
4344
|
+
EndOfDeclarationMarker = 359,
|
|
4345
|
+
SyntheticReferenceExpression = 360,
|
|
4346
|
+
Count = 361,
|
|
4346
4347
|
FirstAssignment = 63,
|
|
4347
4348
|
LastAssignment = 78,
|
|
4348
4349
|
FirstCompoundAssignment = 64,
|
|
@@ -4371,9 +4372,9 @@ declare namespace ts {
|
|
|
4371
4372
|
LastStatement = 256,
|
|
4372
4373
|
FirstNode = 163,
|
|
4373
4374
|
FirstJSDocNode = 312,
|
|
4374
|
-
LastJSDocNode =
|
|
4375
|
+
LastJSDocNode = 353,
|
|
4375
4376
|
FirstJSDocTagNode = 330,
|
|
4376
|
-
LastJSDocTagNode =
|
|
4377
|
+
LastJSDocTagNode = 353
|
|
4377
4378
|
}
|
|
4378
4379
|
type TriviaSyntaxKind = SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia | SyntaxKind.NewLineTrivia | SyntaxKind.WhitespaceTrivia | SyntaxKind.ShebangTrivia | SyntaxKind.ConflictMarkerTrivia;
|
|
4379
4380
|
type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.StringLiteral | SyntaxKind.JsxText | SyntaxKind.JsxTextAllWhiteSpaces | SyntaxKind.RegularExpressionLiteral | SyntaxKind.NoSubstitutionTemplateLiteral;
|
|
@@ -5971,6 +5972,10 @@ declare namespace ts {
|
|
|
5971
5972
|
/** If true, then this type literal represents an *array* of its type. */
|
|
5972
5973
|
readonly isArrayType: boolean;
|
|
5973
5974
|
}
|
|
5975
|
+
interface JSDocSatisfiesTag extends JSDocTag {
|
|
5976
|
+
readonly kind: SyntaxKind.JSDocSatisfiesTag;
|
|
5977
|
+
readonly typeExpression: JSDocTypeExpression;
|
|
5978
|
+
}
|
|
5974
5979
|
enum FlowFlags {
|
|
5975
5980
|
Unreachable = 1,
|
|
5976
5981
|
Start = 2,
|
|
@@ -7823,6 +7828,8 @@ declare namespace ts {
|
|
|
7823
7828
|
updateJSDocOverrideTag(node: JSDocOverrideTag, tagName: Identifier, comment?: string | NodeArray<JSDocComment>): JSDocOverrideTag;
|
|
7824
7829
|
createJSDocThrowsTag(tagName: Identifier, typeExpression: JSDocTypeExpression | undefined, comment?: string | NodeArray<JSDocComment>): JSDocThrowsTag;
|
|
7825
7830
|
updateJSDocThrowsTag(node: JSDocThrowsTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression | undefined, comment?: string | NodeArray<JSDocComment> | undefined): JSDocThrowsTag;
|
|
7831
|
+
createJSDocSatisfiesTag(tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocSatisfiesTag;
|
|
7832
|
+
updateJSDocSatisfiesTag(node: JSDocSatisfiesTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment: string | NodeArray<JSDocComment> | undefined): JSDocSatisfiesTag;
|
|
7826
7833
|
createJSDocText(text: string): JSDocText;
|
|
7827
7834
|
updateJSDocText(node: JSDocText, text: string): JSDocText;
|
|
7828
7835
|
createJSDocComment(comment?: string | NodeArray<JSDocComment> | undefined, tags?: readonly JSDocTag[] | undefined): JSDoc;
|
|
@@ -8669,6 +8676,7 @@ declare namespace ts {
|
|
|
8669
8676
|
function getJSDocReturnTag(node: Node): JSDocReturnTag | undefined;
|
|
8670
8677
|
/** Gets the JSDoc template tag for the node if present */
|
|
8671
8678
|
function getJSDocTemplateTag(node: Node): JSDocTemplateTag | undefined;
|
|
8679
|
+
function getJSDocSatisfiesTag(node: Node): JSDocSatisfiesTag | undefined;
|
|
8672
8680
|
/** Gets the JSDoc type tag for the node if present and valid */
|
|
8673
8681
|
function getJSDocTypeTag(node: Node): JSDocTypeTag | undefined;
|
|
8674
8682
|
/**
|
|
@@ -9071,6 +9079,7 @@ declare namespace ts {
|
|
|
9071
9079
|
function isJSDocUnknownTag(node: Node): node is JSDocUnknownTag;
|
|
9072
9080
|
function isJSDocPropertyTag(node: Node): node is JSDocPropertyTag;
|
|
9073
9081
|
function isJSDocImplementsTag(node: Node): node is JSDocImplementsTag;
|
|
9082
|
+
function isJSDocSatisfiesTag(node: Node): node is JSDocSatisfiesTag;
|
|
9074
9083
|
function isJSDocThrowsTag(node: Node): node is JSDocThrowsTag;
|
|
9075
9084
|
function setTextRange<T extends TextRange>(range: T, location: TextRange | undefined): T;
|
|
9076
9085
|
function canHaveModifiers(node: Node): node is HasModifiers;
|