Skip to content

Commit 4e3206f

Browse files
authored
Making HoverContext fields readonly (microsoft#211237)
the context properties are readonly
1 parent 66c3c19 commit 4e3206f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vscode-dts/vscode.proposed.editorHoverVerbosityLevel.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ declare module 'vscode' {
3535
/**
3636
* Whether to increase or decrease the hover's verbosity
3737
*/
38-
action?: HoverVerbosityAction;
38+
readonly action?: HoverVerbosityAction;
3939

4040
/**
4141
* The previous hover sent for the same position
4242
*/
43-
previousHover?: Hover;
43+
readonly previousHover?: Hover;
4444
}
4545

4646
export enum HoverVerbosityAction {

0 commit comments

Comments
 (0)