Skip to content

Commit

Permalink
fix: #5433 add formattedValue type
Browse files Browse the repository at this point in the history
  • Loading branch information
xujiangyang committed Apr 19, 2024
1 parent e747e01 commit f3c71bc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions components/lib/inputnumber/InputNumber.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ export interface InputNumberInputEvent {
* New value
*/
value: string | number | undefined;
/**
* currentValue
*/
formattedValue: string;
}

/**
Expand All @@ -86,6 +90,10 @@ export interface InputNumberBlurEvent {
* Input value
*/
value: string;
/**
* currentValue
*/
formattedValue: string;
}

/**
Expand Down

0 comments on commit f3c71bc

Please sign in to comment.