We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91c99ee commit 96ab0f7Copy full SHA for 96ab0f7
1 file changed
packages/main/src/RangeSlider.ts
@@ -109,7 +109,7 @@ class RangeSlider extends SliderBase implements IFormInputElement {
109
this.tooltipStartValue = value.toString();
110
}
111
112
- get startValue() {
+ get startValue(): number {
113
return this._startValue;
114
115
@@ -126,7 +126,7 @@ class RangeSlider extends SliderBase implements IFormInputElement {
126
this.tooltipEndValue = value.toString();
127
128
129
- get endValue() {
+ get endValue(): number {
130
return this._endValue;
131
132
0 commit comments