Archived
1
0

Expose Terminal Service in API

Will need in sail.
This commit is contained in:
Anmol Sethi 2019-05-02 09:38:43 -04:00
parent ab8f8a0a22
commit 6ef1628acb
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
// tslint:disable no-any
import { ITerminalService } from "vs/workbench/contrib/terminal/common/terminal";
export interface EvalHelper { }
interface ActiveEvalEmitter {
removeAllListeners(event?: string): void;
@ -149,6 +151,7 @@ declare namespace ide {
readonly storageService: IStorageService;
readonly menuRegistry: IMenuRegistry;
readonly commandRegistry: ICommandRegistry;
readonly terminalService: ITerminalService;
onFileCreate(cb: (path: string) => void): void;
onFileMove(cb: (path: string, target: string) => void): void;

View File

@ -39,6 +39,7 @@ class VSClient extends IdeClient {
// tslint:disable-next-line:no-any
statusbarService: getService<IStatusbarService>(IStatusbarService) as any,
notificationService: getService<INotificationService>(INotificationService),
terminalService: getService<ITerminalService>(ITerminalService),
storageService: {
save: (): Promise<void> => {
// tslint:disable-next-line:no-any