Making HoverContext fields readonly (#211237)

the context properties are readonly
This commit is contained in:
Aiday Marlen Kyzy 2024-04-24 13:13:49 +02:00 committed by GitHub
parent 66c3c19192
commit 4e3206f5a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,12 +35,12 @@ declare module 'vscode' {
/**
* Whether to increase or decrease the hover's verbosity
*/
action?: HoverVerbosityAction;
readonly action?: HoverVerbosityAction;
/**
* The previous hover sent for the same position
*/
previousHover?: Hover;
readonly previousHover?: Hover;
}
export enum HoverVerbosityAction {