Files
code-server/lib/vscode/src/vs/platform/menubar/electron-sandbox/menubar.ts

14 lines
699 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
import { ICommonMenubarService } from 'vs/platform/menubar/common/menubar';
export const IMenubarService = createDecorator<IMenubarService>('menubarService');
export interface IMenubarService extends ICommonMenubarService {
readonly _serviceBrand: undefined;
}