We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c940a commit b2dc830Copy full SHA for b2dc830
src/chat.ts
@@ -40,9 +40,10 @@ export type ExtensionMessage =
40
| {
41
target: "extension";
42
request: "updateConfiguration";
43
- section: string;
44
- value: any;
45
- configurationTarget: boolean;
+ section: "sourcery.codeLens";
+ value: boolean;
+ // https://code.visualstudio.com/api/references/vscode-api#ConfigurationTarget
46
+ configurationTarget: vscode.ConfigurationTarget;
47
};
48
49
type LanguageServerMessage = {
0 commit comments