Fixed #2712 - Component: Type error for InputNumber's class

pull/2725/head
Tuğçe Küçükoğlu 2022-06-28 14:20:46 +03:00
parent cd2ce51a5f
commit 0f20cb1919
1 changed files with 4 additions and 4 deletions

View File

@ -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 {