File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ declare module 'vscode' {
69
69
/**
70
70
* The full command line that was executed, including both the command and its arguments.
71
71
*/
72
- value : string ;
72
+ readonly value : string ;
73
73
74
74
/**
75
75
* Whether the command line value came from a trusted source and is therefore safe to
@@ -81,13 +81,13 @@ declare module 'vscode' {
81
81
* integration script (ie. {@link TerminalShellExecutionCommandLineConfidence.High high confidence})
82
82
* and it used a nonce for verification.
83
83
*/
84
- isTrusted : boolean ;
84
+ readonly isTrusted : boolean ;
85
85
86
86
/**
87
87
* The confidence of the command line value which is determined by how the value was
88
88
* obtained. This depends upon the implementation of the shell integration script.
89
89
*/
90
- confidence : TerminalShellExecutionCommandLineConfidence ;
90
+ readonly confidence : TerminalShellExecutionCommandLineConfidence ;
91
91
}
92
92
93
93
/**
You can’t perform that action at this time.
0 commit comments