File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/workbench/contrib/interactive/browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { Schemas } from 'vs/base/common/network';
12
12
import { extname } from 'vs/base/common/resources' ;
13
13
import { isFalsyOrWhitespace } from 'vs/base/common/strings' ;
14
14
import { assertType } from 'vs/base/common/types' ;
15
- import { URI } from 'vs/base/common/uri' ;
15
+ import { URI , UriComponents } from 'vs/base/common/uri' ;
16
16
import { IBulkEditService } from 'vs/editor/browser/services/bulkEditService' ;
17
17
import { CodeEditorWidget } from 'vs/editor/browser/widget/codeEditorWidget' ;
18
18
import { EditOperation } from 'vs/editor/common/core/editOperation' ;
@@ -475,7 +475,7 @@ registerAction2(class extends Action2 {
475
475
} ) ;
476
476
}
477
477
478
- async run ( accessor : ServicesAccessor , context ?: URI ) : Promise < void > {
478
+ async run ( accessor : ServicesAccessor , context ?: UriComponents ) : Promise < void > {
479
479
const editorService = accessor . get ( IEditorService ) ;
480
480
const bulkEditService = accessor . get ( IBulkEditService ) ;
481
481
const historyService = accessor . get ( IInteractiveHistoryService ) ;
You can’t perform that action at this time.
0 commit comments