File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,10 @@ export class QuickWizardCommand extends QuickWizardCommandBase {
14
14
super ( container , [ Commands . ShowLaunchpad ] ) ;
15
15
}
16
16
17
- protected override preExecute ( context : CommandContext , args ?: QuickWizardCommandArgsWithCompletion ) {
17
+ protected override preExecute (
18
+ context : CommandContext ,
19
+ args ?: QuickWizardCommandArgsWithCompletion < QuickWizardCommandArgs > ,
20
+ ) {
18
21
switch ( context . command ) {
19
22
case Commands . ShowLaunchpad :
20
23
return this . execute ( { command : 'launchpad' , ...args } ) ;
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ export class DisconnectRemoteProviderCommand extends Command {
134
134
super ( Commands . DisconnectRemoteProvider ) ;
135
135
}
136
136
137
- protected override preExecute ( context : CommandContext , args ?: ConnectRemoteProviderCommandArgs ) {
137
+ protected override preExecute ( context : CommandContext , args ?: DisconnectRemoteProviderCommandArgs ) {
138
138
if ( isCommandContextViewNodeHasRemote ( context ) ) {
139
139
args = { ...args , remote : context . node . remote . name , repoPath : context . node . remote . repoPath } ;
140
140
}
You can’t perform that action at this time.
0 commit comments