File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export class GraphWebview extends WebviewBase<State> {
106
106
this . onConfigurationChanged ( ) ;
107
107
}
108
108
109
- override async show ( column : ViewColumn = ViewColumn . Active , ...args : any [ ] ) : Promise < void > {
109
+ override async show ( column : ViewColumn = ViewColumn . Active , ...args : unknown [ ] ) : Promise < void > {
110
110
if ( ! ( await ensurePlusFeaturesEnabled ( ) ) ) return ;
111
111
112
112
if ( this . container . git . repositoryCount > 1 ) {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export class TimelineWebview extends WebviewBase<State> {
60
60
} ;
61
61
}
62
62
63
- override async show ( column : ViewColumn = ViewColumn . Beside , ...args : any [ ] ) : Promise < void > {
63
+ override async show ( column : ViewColumn = ViewColumn . Beside , ...args : unknown [ ] ) : Promise < void > {
64
64
if ( ! ( await ensurePlusFeaturesEnabled ( ) ) ) return ;
65
65
66
66
return super . show ( column , ...args ) ;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export abstract class WebviewBase<State> implements Disposable {
70
70
this . _panel ?. dispose ( ) ;
71
71
}
72
72
73
- async show ( column : ViewColumn = ViewColumn . Beside , ..._args : any [ ] ) : Promise < void > {
73
+ async show ( column : ViewColumn = ViewColumn . Beside , ..._args : unknown [ ] ) : Promise < void > {
74
74
void this . container . usage . track ( `${ this . trackingFeature } :shown` ) ;
75
75
76
76
// Only try to open beside if there is an active tab
@@ -146,7 +146,7 @@ export abstract class WebviewBase<State> implements Disposable {
146
146
this . _panel = undefined ;
147
147
}
148
148
149
- protected onShowCommand ( ...args : any [ ] ) : void {
149
+ protected onShowCommand ( ...args : unknown [ ] ) : void {
150
150
void this . show ( undefined , ...args ) ;
151
151
}
152
152
You can’t perform that action at this time.
0 commit comments