diff --git a/api/@ohos.arkui.advanced.GridObjectSortComponent.static.d.ets b/api/@ohos.arkui.advanced.GridObjectSortComponent.static.d.ets index 31859fb7f637117a4574cc3faade194baaf14234..1e35f58caa0e928bef14fa3776049962298f64c8 100644 --- a/api/@ohos.arkui.advanced.GridObjectSortComponent.static.d.ets +++ b/api/@ohos.arkui.advanced.GridObjectSortComponent.static.d.ets @@ -60,11 +60,11 @@ export interface GridObjectSortComponentItem { /** * id of GridObjectSortComponent item. * - * @type { number | string } + * @type { int | string } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - id: number | string; + id: int | string; /** * GridObjectSortComponent item text. * @@ -84,11 +84,11 @@ export interface GridObjectSortComponentItem { /** * order of GridObjectSortComponentItem, Used for sorting dataList. * - * @type { number } + * @type { int } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - order: number; + order: int; /** * image resource path of the GridObjectSortComponent item. * @@ -127,11 +127,11 @@ export interface GridObjectSortComponentOptions { /** * The size of the GridObjectSortComponent image. * - * @type { ?(number | Resource) } + * @type { ?(int | Resource) } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - imageSize?: number | Resource; + imageSize?: int | Resource; /** * The title displayed in the unedited state of the GridObjectSortComponent. * diff --git a/api/@ohos.arkui.advanced.ProgressButton.static.d.ets b/api/@ohos.arkui.advanced.ProgressButton.static.d.ets index 585a1fafd6cff577e4b1a3c15b6ea44002ccef17..c504438ddf0f4a2a230da4fe645788cf6c2ed076 100644 --- a/api/@ohos.arkui.advanced.ProgressButton.static.d.ets +++ b/api/@ohos.arkui.advanced.ProgressButton.static.d.ets @@ -35,12 +35,12 @@ export declare struct ProgressButton { /** * Sets the content when progress. * - * @type { int } + * @type { double } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 static */ @PropRef - progress: int; + progress: double; /** * Sets the ProgressButton content. * diff --git a/api/@ohos.arkui.advanced.ProgressButtonV2.static.d.ets b/api/@ohos.arkui.advanced.ProgressButtonV2.static.d.ets index af96bfe0aebf924b7a976aebaf985a2e1be2f2c9..9f145f4227cb1c94ccf95abadad8f35fd918bfab 100644 --- a/api/@ohos.arkui.advanced.ProgressButtonV2.static.d.ets +++ b/api/@ohos.arkui.advanced.ProgressButtonV2.static.d.ets @@ -36,14 +36,14 @@ export declare struct ProgressButtonV2 { /** * Sets the ProgressButtonV2 progress. * - * @type { int } + * @type { double } * @readonly * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ @Require @Param - readonly progress: int; + readonly progress: double; /** * Sets the ProgressButtonV2 content. *