typescript 5.8.0-dev.20250207 → 5.8.0-dev.20250208

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,10 +1486,6 @@ declare namespace ts {
1486
1486
  command: CommandTypes.Quickinfo;
1487
1487
  arguments: FileLocationRequestArgs;
1488
1488
  }
1489
- export interface QuickInfoRequestArgs extends FileLocationRequestArgs {
1490
- /** TODO */
1491
- verbosityLevel?: number;
1492
- }
1493
1489
  /**
1494
1490
  * Body of QuickInfoResponse.
1495
1491
  */
@@ -1523,10 +1519,6 @@ declare namespace ts {
1523
1519
  * JSDoc tags associated with symbol.
1524
1520
  */
1525
1521
  tags: JSDocTagInfo[];
1526
- /**
1527
- * TODO
1528
- */
1529
- canIncreaseVerbosityLevel?: boolean;
1530
1522
  }
1531
1523
  /**
1532
1524
  * Quickinfo response message.
@@ -10765,7 +10757,6 @@ declare namespace ts {
10765
10757
  displayParts?: SymbolDisplayPart[];
10766
10758
  documentation?: SymbolDisplayPart[];
10767
10759
  tags?: JSDocTagInfo[];
10768
- canIncreaseVerbosityLevel?: boolean;
10769
10760
  }
10770
10761
  type RenameInfo = RenameInfoSuccess | RenameInfoFailure;
10771
10762
  interface RenameInfoSuccess {