From 2433892bd5bf39f87da3462b0d05629dd4bad7c3 Mon Sep 17 00:00:00 2001 From: bizhenhang Date: Tue, 5 Aug 2025 11:28:57 +0800 Subject: [PATCH] fix row opts Signed-off-by: bizhenhang --- api/@internal/component/ets/row.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@internal/component/ets/row.d.ts b/api/@internal/component/ets/row.d.ts index 36d502a1fe..2280fb9884 100644 --- a/api/@internal/component/ets/row.d.ts +++ b/api/@internal/component/ets/row.d.ts @@ -178,7 +178,7 @@ interface RowInterface { * Called when the layout is set in the horizontal direction. * * Anonymous Object Rectification - * @param { ?RowOptions } options - row options + * @param { ?RowOptions } [options] - row options * @returns { RowAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform @@ -191,7 +191,7 @@ interface RowInterface { * Called when the layout is set in the horizontal direction. * * Anonymous Object Rectification - * @param { ?(RowOptions | RowOptionsV2) } options - row options + * @param { ?(RowOptions | RowOptionsV2) } [options] - row options * @returns { RowAttribute } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform -- Gitee