We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2e197f commit c3f4a01Copy full SHA for c3f4a01
1 file changed
extensions/ql-vscode/src/extension.ts
@@ -217,6 +217,10 @@ interface DistributionUpdateConfig {
217
allowAutoUpdating: boolean;
218
}
219
220
+interface DatabaseQuickPickItem extends QuickPickItem {
221
+ databaseItem: DatabaseItem;
222
+}
223
+
224
const shouldUpdateOnNextActivationKey = "shouldUpdateOnNextActivation";
225
226
const codeQlVersionRange = DEFAULT_DISTRIBUTION_VERSION_RANGE;
@@ -950,9 +954,6 @@ async function activateWithInstalledDistribution(
950
954
queryServerLogger,
951
955
),
952
956
);
953
- interface DatabaseQuickPickItem extends QuickPickItem {
- databaseItem: DatabaseItem;
- }
957
ctx.subscriptions.push(
958
commandRunnerWithProgress(
959
"codeQL.runQueryOnMultipleDatabases",
0 commit comments