UNPKG

1.17 kBTypeScriptView Raw
1import { Slider as SliderDefinition } from '.';
2import { AccessibilityRole } from '../../accessibility';
3import { CoercibleProperty, Property } from '../core/properties';
4import { View } from '../core/view';
5export declare class SliderBase extends View implements SliderDefinition {
6 static readonly accessibilityIncrementEvent = "accessibilityIncrement";
7 static readonly accessibilityDecrementEvent = "accessibilityDecrement";
8 value: number;
9 minValue: number;
10 maxValue: number;
11 get accessibilityStep(): number;
12 set accessibilityStep(value: number);
13 accessible: boolean;
14 accessibilityRole: AccessibilityRole;
15}
16/**
17 * Represents the observable property backing the value property of each Slider instance.
18 */
19export declare const valueProperty: CoercibleProperty<SliderBase, number>;
20/**
21 * Represents the observable property backing the minValue property of each Slider instance.
22 */
23export declare const minValueProperty: Property<SliderBase, number>;
24/**
25 * Represents the observable property backing the maxValue property of each Slider instance.
26 */
27export declare const maxValueProperty: CoercibleProperty<SliderBase, number>;