We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e9c2c8 commit 8fbde9fCopy full SHA for 8fbde9f
1 file changed
extensions/ql-vscode/src/common/commands.ts
@@ -36,7 +36,10 @@ export type SingleSelectionCommandFunction<Item> = (
36
// See https://code.visualstudio.com/api/references/commands
37
export type BuiltInVsCodeCommands = {
38
"markdown.showPreviewToSide": (uri: Uri) => Promise<void>;
39
- setContext: (key: string, value: unknown) => Promise<void>;
+ setContext: (
40
+ key: `${"codeql" | "codeQL"}${string}`,
41
+ value: unknown,
42
+ ) => Promise<void>;
43
"workbench.action.reloadWindow": () => Promise<void>;
44
};
45
0 commit comments