Archived
1
0

Expose actions registry (#701)

This commit is contained in:
Anmol Sethi
2019-05-20 15:35:58 -04:00
committed by Asher
parent db39eacfa1
commit 0462a93f11
2 changed files with 16 additions and 5 deletions

View File

@ -1,6 +1,9 @@
// tslint:disable no-any
import { ITerminalService } from "vs/workbench/contrib/terminal/common/terminal";
import { IWorkbenchActionRegistry } from 'vs/workbench/common/actions';
import { Action } from 'vs/base/common/actions';
import { SyncActionDescriptor } from 'vs/platform/actions/common/actions';
export interface EvalHelper { }
interface ActiveEvalEmitter {
@ -146,7 +149,10 @@ declare namespace ide {
export const client: {};
export const workbench: {
readonly action: Action,
readonly syncActionDescriptor: SyncActionDescriptor,
readonly statusbarService: IStatusbarService;
readonly actionsRegistry: IWorkbenchActionRegistry;
readonly notificationService: INotificationService;
readonly storageService: IStorageService;
readonly menuRegistry: IMenuRegistry;