Proposed expandable hover API (#59940)

This commit is contained in:
Gabriela Araujo Britto
2024-11-05 16:41:13 -08:00
committed by GitHub
parent 9d7e087022
commit 80eeb4ec8d
30 changed files with 8169 additions and 57 deletions
+10
View File
@@ -2004,6 +2004,11 @@ export interface QuickInfoRequest extends FileLocationRequest {
arguments: FileLocationRequestArgs;
}
export interface QuickInfoRequestArgs extends FileLocationRequestArgs {
/** TODO */
verbosityLevel?: number;
}
/**
* Body of QuickInfoResponse.
*/
@@ -2043,6 +2048,11 @@ export interface QuickInfoResponseBody {
* JSDoc tags associated with symbol.
*/
tags: JSDocTagInfo[];
/**
* TODO
*/
canIncreaseVerbosityLevel?: boolean;
}
/**