From f3c71bcfc1c66fee0effab5d18fc3fe9936e3248 Mon Sep 17 00:00:00 2001 From: xujiangyang Date: Fri, 19 Apr 2024 17:21:20 +0800 Subject: [PATCH] fix: #5433 add formattedValue type --- components/lib/inputnumber/InputNumber.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/lib/inputnumber/InputNumber.d.ts b/components/lib/inputnumber/InputNumber.d.ts index 8e4fb37db..5f63b130c 100755 --- a/components/lib/inputnumber/InputNumber.d.ts +++ b/components/lib/inputnumber/InputNumber.d.ts @@ -71,6 +71,10 @@ export interface InputNumberInputEvent { * New value */ value: string | number | undefined; + /** + * currentValue + */ + formattedValue: string; } /** @@ -86,6 +90,10 @@ export interface InputNumberBlurEvent { * Input value */ value: string; + /** + * currentValue + */ + formattedValue: string; } /**