@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
16 lines (14 loc) • 708 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { IConfigurationService } from '../../configuration/common/configuration.mjs';
export declare const enum DispatchConfig {
Code = 0,
KeyCode = 1,
}
export interface IKeyboardConfig {
dispatch: DispatchConfig;
mapAltGrToCtrlAlt: boolean;
}
export declare function readKeyboardConfig(configurationService: IConfigurationService): IKeyboardConfig;