From 67ea2ead55f236bbccd8438b1c05ce150905b31f Mon Sep 17 00:00:00 2001 From: qianyong325 Date: Tue, 24 Jun 2025 14:37:03 +0800 Subject: [PATCH] simple keyboard fix code Signed-off-by: qianyong325 --- api/@ohos.inputMethod.d.ts | 1 - api/@ohos.inputMethodEngine.d.ts | 3 --- 2 files changed, 4 deletions(-) diff --git a/api/@ohos.inputMethod.d.ts b/api/@ohos.inputMethod.d.ts index 616ee9f16a..f4e99ba13c 100644 --- a/api/@ohos.inputMethod.d.ts +++ b/api/@ohos.inputMethod.d.ts @@ -370,7 +370,6 @@ declare namespace inputMethod { * @param { boolean } enable - indicates enable simple keyboard or not. * @syscap SystemCapability.MiscServices.InputMethodFramework * @since 20 - * @arkts 1.1&1.2 */ function setSimpleKeyboardEnabled(enable: boolean): void; diff --git a/api/@ohos.inputMethodEngine.d.ts b/api/@ohos.inputMethodEngine.d.ts index 01d4c11dce..f713d11492 100644 --- a/api/@ohos.inputMethodEngine.d.ts +++ b/api/@ohos.inputMethodEngine.d.ts @@ -1559,7 +1559,6 @@ declare namespace inputMethodEngine { * @returns { AttachOptions } return attach options. * @syscap SystemCapability.MiscServices.InputMethodFramework * @since 20 - * @arkts 1.1&1.2 */ getAttachOptions(): AttachOptions; /** @@ -1578,7 +1577,6 @@ declare namespace inputMethodEngine { * @param { Callback } callback - the callback of on('attachOptionsDidChange'). * @syscap SystemCapability.MiscServices.InputMethodFramework * @since 20 - * @arkts 1.1&1.2 */ on(type: 'attachOptionsDidChange', callback: Callback): void; /** @@ -2938,7 +2936,6 @@ declare namespace inputMethodEngine { * @type { ?boolean } * @syscap SystemCapability.MiscServices.InputMethodFramework * @since 20 - * @arkts 1.1&1.2 */ isSimpleKeyboardEnabled?: boolean; } -- Gitee