From a7f208d2cd640d7dc382f839c3f74c1d16bc898f Mon Sep 17 00:00:00 2001 From: lijuan124 Date: Wed, 14 Sep 2022 16:46:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DminLabel,maxLabel=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E6=97=A0=E6=95=88=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lijuan124 --- api/@internal/component/ets/slider.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@internal/component/ets/slider.d.ts b/api/@internal/component/ets/slider.d.ts index f372a8c8ed..f4f2f600e3 100644 --- a/api/@internal/component/ets/slider.d.ts +++ b/api/@internal/component/ets/slider.d.ts @@ -148,13 +148,13 @@ declare class SliderAttribute extends CommonMethod { * Called when the minimum label is set. * @since 7 */ - minLabel(value: string): SliderAttribute; + minLabel(value: number): SliderAttribute; /** * Called when the maximum label is set. * @since 7 */ - maxLabel(value: string): SliderAttribute; + maxLabel(value: number): SliderAttribute; /** * Called when setting whether to display step size. -- Gitee