Skip to content

Commit

Permalink
Merge pull request #2725 from tugcekucukoglu/type-number
Browse files Browse the repository at this point in the history
Fixed #2712 - Component: Type error for InputNumber's class
  • Loading branch information
tugcekucukoglu authored Jun 28, 2022
2 parents cd2ce51 + 0f20cb1 commit 0eb2cc8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/inputnumber/InputNumber.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,19 +140,19 @@ export interface InputNumberProps {
/**
* Inline style of the input field.
*/
inputStyle?: any;
inputStyle?: any | undefined;
/**
* Style class of the input field.
*/
inputClass?: string | undefined;
inputClass?: any | undefined;
/**
* Inline style of the component.
*/
style?: any;
style?: any | undefined;
/**
* Style class of the element.
*/
class?: string | undefined;
class?: any | undefined;
}

export interface InputNumberSlots {
Expand Down

0 comments on commit 0eb2cc8

Please sign in to comment.