diff --git a/api/@internal/component/ets/tabs.d.ts b/api/@internal/component/ets/tabs.d.ts index bc4fb48f073dc66df53a8e98a0e9d7b19b7d0ea4..7723db2b0024ba675a50ae45a6d04af10a97f782 100644 --- a/api/@internal/component/ets/tabs.d.ts +++ b/api/@internal/component/ets/tabs.d.ts @@ -103,25 +103,15 @@ declare class TabsAttribute extends CommonMethod { /** * Called when the width of the bar graph is set. + * Notice: barWidth no longer supports Number type, but only Length type since 7. * @since 7 */ - barWidth(value: number): TabsAttribute; - - /** - * Called when the height of the bar graph is set. - * @since 7 - */ - barHeight(value: number): TabsAttribute; - - /** - * Called when the width of the bar graph is set. - * @since 8 - */ barWidth(value: Length): TabsAttribute; /** * Called when the height of the bar graph is set. - * @since 8 + * Notice: barHeight no longer supports Number type, but only Length type since 7. + * @since 7 */ barHeight(value: Length): TabsAttribute;