UNPKG

sussudio

Version:

An unofficial VS Code Internal API

15 lines (14 loc) 718 B
/*--------------------------------------------------------------------------------------------- * 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;