@typescript-deploys/pr-build 5.4.0-pr-57230-11 → 5.4.0-pr-57207-3

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.
@@ -4542,12 +4542,13 @@ declare namespace ts {
4542
4542
  JSDocPropertyTag = 355,
4543
4543
  JSDocThrowsTag = 356,
4544
4544
  JSDocSatisfiesTag = 357,
4545
- SyntaxList = 358,
4546
- NotEmittedStatement = 359,
4547
- PartiallyEmittedExpression = 360,
4548
- CommaListExpression = 361,
4549
- SyntheticReferenceExpression = 362,
4550
- Count = 363,
4545
+ JSDocImportTypeTag = 358,
4546
+ SyntaxList = 359,
4547
+ NotEmittedStatement = 360,
4548
+ PartiallyEmittedExpression = 361,
4549
+ CommaListExpression = 362,
4550
+ SyntheticReferenceExpression = 363,
4551
+ Count = 364,
4551
4552
  FirstAssignment = 64,
4552
4553
  LastAssignment = 79,
4553
4554
  FirstCompoundAssignment = 65,
@@ -4576,9 +4577,9 @@ declare namespace ts {
4576
4577
  LastStatement = 259,
4577
4578
  FirstNode = 166,
4578
4579
  FirstJSDocNode = 316,
4579
- LastJSDocNode = 357,
4580
+ LastJSDocNode = 358,
4580
4581
  FirstJSDocTagNode = 334,
4581
- LastJSDocTagNode = 357,
4582
+ LastJSDocTagNode = 358,
4582
4583
  }
4583
4584
  type TriviaSyntaxKind = SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia | SyntaxKind.NewLineTrivia | SyntaxKind.WhitespaceTrivia | SyntaxKind.ShebangTrivia | SyntaxKind.ConflictMarkerTrivia;
4584
4585
  type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.StringLiteral | SyntaxKind.JsxText | SyntaxKind.JsxTextAllWhiteSpaces | SyntaxKind.RegularExpressionLiteral | SyntaxKind.NoSubstitutionTemplateLiteral;
@@ -6028,7 +6029,7 @@ declare namespace ts {
6028
6029
  type NamedExportBindings = NamespaceExport | NamedExports;
6029
6030
  interface ImportClause extends NamedDeclaration {
6030
6031
  readonly kind: SyntaxKind.ImportClause;
6031
- readonly parent: ImportDeclaration;
6032
+ readonly parent: ImportDeclaration | JSDocImportTypeTag;
6032
6033
  readonly isTypeOnly: boolean;
6033
6034
  readonly name?: Identifier;
6034
6035
  readonly namedBindings?: NamedImportBindings;
@@ -6384,6 +6385,12 @@ declare namespace ts {
6384
6385
  readonly kind: SyntaxKind.JSDocSatisfiesTag;
6385
6386
  readonly typeExpression: JSDocTypeExpression;
6386
6387
  }
6388
+ interface JSDocImportTypeTag extends JSDocTag {
6389
+ readonly kind: SyntaxKind.JSDocImportTypeTag;
6390
+ readonly parent: JSDoc;
6391
+ readonly importClause: ImportClause;
6392
+ readonly moduleSpecifier: Expression;
6393
+ }
6387
6394
  enum FlowFlags {
6388
6395
  Unreachable = 1,
6389
6396
  Start = 2,
@@ -8348,6 +8355,8 @@ declare namespace ts {
8348
8355
  updateJSDocThrowsTag(node: JSDocThrowsTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression | undefined, comment?: string | NodeArray<JSDocComment> | undefined): JSDocThrowsTag;
8349
8356
  createJSDocSatisfiesTag(tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocSatisfiesTag;
8350
8357
  updateJSDocSatisfiesTag(node: JSDocSatisfiesTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment: string | NodeArray<JSDocComment> | undefined): JSDocSatisfiesTag;
8358
+ createJSDocImportTypeTag(tagName: Identifier | undefined, importClause: ImportClause, moduleSpecifier: Expression, comment?: string | NodeArray<JSDocComment>): JSDocImportTypeTag;
8359
+ updateJSDocImportTypeTag(node: JSDocImportTypeTag, tagName: Identifier | undefined, importClause: ImportClause, moduleSpecifier: Expression, comment: string | NodeArray<JSDocComment> | undefined): JSDocImportTypeTag;
8351
8360
  createJSDocText(text: string): JSDocText;
8352
8361
  updateJSDocText(node: JSDocText, text: string): JSDocText;
8353
8362
  createJSDocComment(comment?: string | NodeArray<JSDocComment> | undefined, tags?: readonly JSDocTag[] | undefined): JSDoc;
@@ -9575,6 +9584,7 @@ declare namespace ts {
9575
9584
  function isJSDocImplementsTag(node: Node): node is JSDocImplementsTag;
9576
9585
  function isJSDocSatisfiesTag(node: Node): node is JSDocSatisfiesTag;
9577
9586
  function isJSDocThrowsTag(node: Node): node is JSDocThrowsTag;
9587
+ function isJSDocImportTypeTag(node: Node): node is JSDocImportTypeTag;
9578
9588
  function isQuestionOrExclamationToken(node: Node): node is QuestionToken | ExclamationToken;
9579
9589
  function isIdentifierOrThisTypeNode(node: Node): node is Identifier | ThisTypeNode;
9580
9590
  function isReadonlyKeywordOrPlusOrMinusToken(node: Node): node is ReadonlyKeyword | PlusToken | MinusToken;