File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 1
1
// tslint:disable no-any
2
2
3
+ import { ITerminalService } from "vs/workbench/contrib/terminal/common/terminal" ;
4
+
3
5
export interface EvalHelper { }
4
6
interface ActiveEvalEmitter {
5
7
removeAllListeners ( event ?: string ) : void ;
@@ -149,6 +151,7 @@ declare namespace ide {
149
151
readonly storageService : IStorageService ;
150
152
readonly menuRegistry : IMenuRegistry ;
151
153
readonly commandRegistry : ICommandRegistry ;
154
+ readonly terminalService : ITerminalService ;
152
155
153
156
onFileCreate ( cb : ( path : string ) => void ) : void ;
154
157
onFileMove ( cb : ( path : string , target : string ) => void ) : void ;
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ class VSClient extends IdeClient {
39
39
// tslint:disable-next-line:no-any
40
40
statusbarService : getService < IStatusbarService > ( IStatusbarService ) as any ,
41
41
notificationService : getService < INotificationService > ( INotificationService ) ,
42
+ terminalService : getService < ITerminalService > ( ITerminalService ) ,
42
43
storageService : {
43
44
save : ( ) : Promise < void > => {
44
45
// tslint:disable-next-line:no-any
You can’t perform that action at this time.
0 commit comments