UNPKG

sussudio

Version:

An unofficial VS Code Internal API

20 lines (19 loc) 676 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ export declare class IMEImpl { private readonly _onDidChange; readonly onDidChange: import("./event.mjs").Event<void>; private _enabled; get enabled(): boolean; /** * Enable IME */ enable(): void; /** * Disable IME */ disable(): void; } export declare const IME: IMEImpl;