From 6c877eac4420c368bdc83d518bbdf1cbdfa3367f Mon Sep 17 00:00:00 2001 From: shaoziyun Date: Mon, 30 May 2022 08:25:07 +0000 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: shaoziyun --- zh-cn/application-dev/reference/apis/js-apis-inputevent.md | 4 ++-- zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md | 4 ++-- zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md | 4 ++-- .../application-dev/reference/apis/js-apis-inputmouseevent.md | 4 ++-- .../application-dev/reference/apis/js-apis-inputtouchevent.md | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputevent.md index 5aebb9ca5b..a039363b77 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputevent.md @@ -1,13 +1,13 @@ # 输入事件 - +设备上报的基本事件。 > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 ## 导入模块 -```ts +```js import InputEvent from '@ohos.multimodalInput.inputEvent'; ``` diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md b/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md index a0c3b89829..b7022e48fb 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md @@ -1,13 +1,13 @@ # 键值 - +按键类设备键值。 > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 ## 导入模块 -```ts +```js import {KeyCode} from '@ohos.multimodalInput.keyCode' ``` diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md index 96ee7f4d40..4252faf2be 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md @@ -1,13 +1,13 @@ # 按键输入事件 - +设备上报的按键事件。 > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 ## 导入模块 -```ts +```js import {Action,Key,KeyEvent} from '@ohos.multimodalInput.keyEvent'; ``` diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md index 0d9349484a..1262a33512 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md @@ -1,13 +1,13 @@ # 鼠标输入事件 - +设备上报的鼠标事件。 > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 ## 导入模块 -```ts +```js import {Action,Button,Axis,AxisValue,MouseEvent} from '@ohos.multimodalInput.mouseEvent'; ``` diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md index 369493fcf8..12fef97889 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md @@ -1,13 +1,13 @@ # 触摸输入事件 - +设备上报的触屏事件。 > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 ## 导入模块 -```ts +```js import {Action,ToolType,SourceType,Touch,TouchEvent} from '@ohos.multimodalInput.ToucEvent'; ``` -- GitLab