Skip to content

Commit

Permalink
Expose Terminal Service in API
Browse files Browse the repository at this point in the history
Will need in sail.
  • Loading branch information
nhooyr committed May 2, 2019
1 parent ab8f8a0 commit 6ef1628
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/ide-api/api.d.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions packages/vscode/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6ef1628

Please sign in to comment.