From 98c045cee8d4161c637cdb2df6c4cbaacf0bae7d Mon Sep 17 00:00:00 2001 From: yaowenrui Date: Thu, 27 Mar 2025 17:25:19 +0800 Subject: [PATCH] add systemapi label for mouse button Signed-off-by: yaowenrui --- api/@ohos.multimodalInput.pointer.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/@ohos.multimodalInput.pointer.d.ts b/api/@ohos.multimodalInput.pointer.d.ts index 5d289d172a..16a4faaeba 100644 --- a/api/@ohos.multimodalInput.pointer.d.ts +++ b/api/@ohos.multimodalInput.pointer.d.ts @@ -433,6 +433,7 @@ declare namespace pointer { * * @enum { number } * @syscap SystemCapability.MultimodalInput.Input.Pointer + * @systemapi hide for inner use. * @since 10 */ enum PrimaryButton { @@ -440,6 +441,7 @@ declare namespace pointer { * Left mouse button * * @syscap SystemCapability.MultimodalInput.Input.Pointer + * @systemapi hide for inner use. * @since 10 */ LEFT = 0, @@ -447,6 +449,7 @@ declare namespace pointer { * Right mouse button * * @syscap SystemCapability.MultimodalInput.Input.Pointer + * @systemapi hide for inner use. * @since 10 */ RIGHT = 1 -- Gitee