diff --git a/api/@internal/component/ets/gesture.d.ts b/api/@internal/component/ets/gesture.d.ts index 5f6f279b39cb8ecb6b240e59121b5ebce5175a50..7dc04203aea22a30f1a48947dad98fb4e338bf8e 100644 --- a/api/@internal/component/ets/gesture.d.ts +++ b/api/@internal/component/ets/gesture.d.ts @@ -934,6 +934,28 @@ declare interface EventLocationInfo { * @since 20 */ displayY: number; + + /** + * X position of the point relative to the global display coordinate. + * + * @type { ?number } + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @crossplatform + * @atomicservice + * @since 23 + */ + globalDisplayX?: number; + + /** + * Y position of the point relative to the global display coordinate. + * + * @type { ?number } + * @syscap SystemCapability.ArkUI.ArkUI.Full + * @crossplatform + * @atomicservice + * @since 23 + */ + globalDisplayY?: number; } /**