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 11// tslint:disable no-any
22
3+ import { ITerminalService } from "vs/workbench/contrib/terminal/common/terminal" ;
4+
35export interface EvalHelper { }
46interface ActiveEvalEmitter {
57 removeAllListeners ( event ?: string ) : void ;
@@ -149,6 +151,7 @@ declare namespace ide {
149151 readonly storageService : IStorageService ;
150152 readonly menuRegistry : IMenuRegistry ;
151153 readonly commandRegistry : ICommandRegistry ;
154+ readonly terminalService : ITerminalService ;
152155
153156 onFileCreate ( cb : ( path : string ) => void ) : void ;
154157 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 {
3939 // tslint:disable-next-line:no-any
4040 statusbarService : getService < IStatusbarService > ( IStatusbarService ) as any ,
4141 notificationService : getService < INotificationService > ( INotificationService ) ,
42+ terminalService : getService < ITerminalService > ( ITerminalService ) ,
4243 storageService : {
4344 save : ( ) : Promise < void > => {
4445 // tslint:disable-next-line:no-any
You can’t perform that action at this time.
0 commit comments