fix(core): updating type of input value to accept numbers, fixes #20173 (#20267)

This commit is contained in:
Ely Lucas
2020-01-23 11:15:22 -07:00
committed by GitHub
parent 63d4e877fb
commit 708020551f
4 changed files with 8 additions and 7 deletions

View File

@ -1037,7 +1037,7 @@ export namespace Components {
/**
* The value of the input.
*/
'value'?: string | null;
'value'?: string | number | null;
}
interface IonItem {
/**
@ -4576,7 +4576,7 @@ declare namespace LocalJSX {
/**
* The value of the input.
*/
'value'?: string | null;
'value'?: string | number | null;
}
interface IonItem {
/**