diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index ebfd56c0c4ee1705ba31272149094e8bdbd40fcc..071d3e2a13a081123f97c79d33c1ffc9d3ecd376 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -11699,6 +11699,18 @@ declare interface BaseEvent { */ axisVertical?: number; + /** + * Indicates the Pinch axis coordinate. + * + * @type { ?number } + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @crossplatform + * @form + * @atomicservice + * @since 21 + */ + axisPinch?: number; + /** * Touch pressure. * @@ -13697,6 +13709,16 @@ declare interface AxisEvent extends BaseEvent { * @arkts 1.1&1.2 */ getVerticalAxisValue(): number; + + /** + * Obtains the value of the pinch axis for this axis event. + * + * @returns { number } + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @atomicservice + * @since 21 + */ + getPinchAxisScaleValue(): number; } /**