Merge pull request #2725 from tugcekucukoglu/type-number

Fixed #2712 - Component: Type error for InputNumber's class
pull/2726/head
Tuğçe Küçükoğlu 2022-06-28 14:21:01 +03:00 committed by GitHub
commit 0eb2cc80bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -140,19 +140,19 @@ export interface InputNumberProps {
/** /**
* Inline style of the input field. * Inline style of the input field.
*/ */
inputStyle?: any; inputStyle?: any | undefined;
/** /**
* Style class of the input field. * Style class of the input field.
*/ */
inputClass?: string | undefined; inputClass?: any | undefined;
/** /**
* Inline style of the component. * Inline style of the component.
*/ */
style?: any; style?: any | undefined;
/** /**
* Style class of the element. * Style class of the element.
*/ */
class?: string | undefined; class?: any | undefined;
} }
export interface InputNumberSlots { export interface InputNumberSlots {