modify code

Signed-off-by: zhaolinglan <zhaolinglan@huawei.com>
This commit is contained in:
zhaolinglan 2023-10-10 16:53:42 +08:00
parent 3f50feb08c
commit 2a7e747c4e

View File

@ -391,13 +391,13 @@ declare namespace inputMethodEngine {
/**
* Exit the current input type.
*
* @param { AsyncCallback<void> } callback - the callback of ExitCurrentInputType.
* @param { AsyncCallback<void> } callback - the callback of exitCurrentInputType.
* @throws { BusinessError } 201 - permissions check fails.
* @throws { BusinessError } 12800008 - input method manager service error.
* @syscap SystemCapability.MiscServices.InputMethodFramework
* @since 11
*/
ExitCurrentInputType(callback: AsyncCallback<void>): void;
exitCurrentInputType(callback: AsyncCallback<void>): void;
/**
* Exit the current input type.
@ -408,7 +408,7 @@ declare namespace inputMethodEngine {
* @syscap SystemCapability.MiscServices.InputMethodFramework
* @since 11
*/
ExitCurrentInputType(): Promise<void>;
exitCurrentInputType(): Promise<void>;
}
/**