diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index 70402c47b1934d2fc6dad01a64503e2adeb7c16d..8a24e4149daed6dd693b03493dc67a2994523f9b 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -1109,6 +1109,12 @@ declare interface PopupOptions { * @since 7 */ onStateChange?: (event: { isVisible: boolean }) => void; + + /** + * The offset of the sharp corner of popup + * @since 9 + */ + arrowOffset?:Length; } /** @@ -1157,6 +1163,12 @@ declare interface CustomPopupOptions { * @since 8 */ onStateChange?: (event: { isVisible: boolean }) => void; + + /** + * The offset of the sharp corner of popup + * @since 9 + */ + arrowOffset?:Length; } /**