mirror of
https://github.com/coder/code-server.git
synced 2026-05-10 22:37:26 +02:00
14 lines
699 B
TypeScript
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;
|
|
}
|