File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ export class Component extends OpenShiftItem {
141141 }
142142 }
143143
144- static isUsingWebviewEditor ( ) {
144+ static isUsingWebviewEditor ( ) : boolean {
145145 return workspace
146146 . getConfiguration ( 'openshiftConnector' )
147147 . get < boolean > ( 'useWebviewInsteadOfTerminalView' ) ;
@@ -591,7 +591,7 @@ export class Component extends OpenShiftItem {
591591
592592 const binaryFileObj : QuickPickItem [ ] = paths . map ( ( file ) => ( { label : `$(file-zip) ${ path . basename ( file ) } ` , description : `${ file } ` } ) ) ;
593593
594- const binaryFile : any = await window . showQuickPick ( binaryFileObj , { placeHolder : "Select binary file" , ignoreFocusOut : true } ) ;
594+ const binaryFile : QuickPickItem = await window . showQuickPick ( binaryFileObj , { placeHolder : "Select binary file" , ignoreFocusOut : true } ) ;
595595
596596 if ( ! binaryFile ) return null ;
597597
You can’t perform that action at this time.
0 commit comments