Skip to content

Commit

Permalink
refactor: use vscode ConfigurationTarget type and add link
Browse files Browse the repository at this point in the history
  • Loading branch information
bm424 committed Dec 15, 2023
1 parent f1c940a commit b2dc830
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ export type ExtensionMessage =
| {
target: "extension";
request: "updateConfiguration";
section: string;
value: any;
configurationTarget: boolean;
section: "sourcery.codeLens";
value: boolean;
// https://code.visualstudio.com/api/references/vscode-api#ConfigurationTarget
configurationTarget: vscode.ConfigurationTarget;
};

type LanguageServerMessage = {
Expand Down

0 comments on commit b2dc830

Please sign in to comment.