(index: number, stepSize: number = 1)
| 370 | } |
| 371 | |
| 372 | function incrementThumb(index: number, stepSize: number = 1) { |
| 373 | let s = Math.max(stepSize, step); |
| 374 | updateValue(index, snapValueToStep(values[index] + s, minValue, maxValue, step)); |
| 375 | } |
| 376 | |
| 377 | function decrementThumb(index: number, stepSize: number = 1) { |
| 378 | let s = Math.max(stepSize, step); |
no test coverage detected