typescript 5.9.0-dev.20250415 → 5.9.0-dev.20250416

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.
@@ -1486,6 +1486,13 @@ declare namespace ts {
1486
1486
  command: CommandTypes.Quickinfo;
1487
1487
  arguments: FileLocationRequestArgs;
1488
1488
  }
1489
+ export interface QuickInfoRequestArgs extends FileLocationRequestArgs {
1490
+ /**
1491
+ * This controls how many levels of definitions will be expanded in the quick info response.
1492
+ * The default value is 0.
1493
+ */
1494
+ verbosityLevel?: number;
1495
+ }
1489
1496
  /**
1490
1497
  * Body of QuickInfoResponse.
1491
1498
  */
@@ -1519,6 +1526,10 @@ declare namespace ts {
1519
1526
  * JSDoc tags associated with symbol.
1520
1527
  */
1521
1528
  tags: JSDocTagInfo[];
1529
+ /**
1530
+ * Whether the verbosity level can be increased for this quick info response.
1531
+ */
1532
+ canIncreaseVerbosityLevel?: boolean;
1522
1533
  }
1523
1534
  /**
1524
1535
  * Quickinfo response message.
@@ -10757,6 +10768,7 @@ declare namespace ts {
10757
10768
  displayParts?: SymbolDisplayPart[];
10758
10769
  documentation?: SymbolDisplayPart[];
10759
10770
  tags?: JSDocTagInfo[];
10771
+ canIncreaseVerbosityLevel?: boolean;
10760
10772
  }
10761
10773
  type RenameInfo = RenameInfoSuccess | RenameInfoFailure;
10762
10774
  interface RenameInfoSuccess {