File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -211,6 +211,12 @@ export interface CodeQLExtensionInterface {
211211 readonly dispose : ( ) => void ;
212212}
213213
214+ interface DistributionUpdateConfig {
215+ isUserInitiated : boolean ;
216+ shouldDisplayMessageWhenNoUpdates : boolean ;
217+ allowAutoUpdating : boolean ;
218+ }
219+
214220// This is the minimum version of vscode that we _want_ to support. We want to update the language server library, but that
215221// requires 1.67 or later. If we change the minimum version in the package.json, then anyone on an older version of vscode
216222// silently be unable to upgrade. So, the solution is to first bump the minimum version here and release. Then
@@ -267,12 +273,6 @@ export async function activate(
267273 // Checking the vscode version should not block extension activation.
268274 void assertVSCodeVersionGreaterThan ( MIN_VERSION , ctx ) ;
269275
270- interface DistributionUpdateConfig {
271- isUserInitiated : boolean ;
272- shouldDisplayMessageWhenNoUpdates : boolean ;
273- allowAutoUpdating : boolean ;
274- }
275-
276276 async function installOrUpdateDistributionWithProgressTitle (
277277 progressTitle : string ,
278278 config : DistributionUpdateConfig ,
You can’t perform that action at this time.
0 commit comments