/*--------------------------------------------------------------------------------------------- * 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('menubarService'); export interface IMenubarService extends ICommonMenubarService { readonly _serviceBrand: undefined; }