fix(range): value changes when using keyboard

fixes #15065
This commit is contained in:
Manu Mtz.-Almeida
2018-08-07 02:33:21 +02:00
parent f49fa4a815
commit 27fdc9a893
3 changed files with 9 additions and 6 deletions

View File

@ -41,6 +41,7 @@ import {
PickerOptions,
PopoverOptions,
RangeInputChangeEvent,
RangeValue,
RouteID,
RouterDirection,
RouterEventDetail,
@ -1798,7 +1799,7 @@ declare global {
/**
* the value of the range.
*/
'value': any;
'value': RangeValue;
}
interface IonRefresherContent {
@ -5356,7 +5357,7 @@ declare global {
/**
* the value of the range.
*/
'value'?: any;
'value'?: RangeValue;
}
export interface IonRefresherContentAttributes extends HTMLAttributes {