mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
...and in the protocol
This commit is contained in:
parent
952225e7e4
commit
68cf8f8407
1 changed files with 3 additions and 4 deletions
|
|
@ -578,8 +578,7 @@ export interface HoverResult extends V {
|
|||
label: 'hoverResult';
|
||||
|
||||
/**
|
||||
* The hover result. This is the normal LSP hover result with the
|
||||
* addition of allowing '${startRange}' as the range value.
|
||||
* The hover result. This is the normal LSP hover result.
|
||||
*/
|
||||
result: {
|
||||
/**
|
||||
|
|
@ -588,9 +587,9 @@ export interface HoverResult extends V {
|
|||
contents: lsp.MarkupContent | lsp.MarkedString | lsp.MarkedString[];
|
||||
|
||||
/**
|
||||
* The range or `${startRange}`
|
||||
* The optional range.
|
||||
*/
|
||||
range?: lsp.Range | '${startRange}';
|
||||
range?: lsp.Range;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue