| 12345678910111213141516 |
- import { ElementRef, Renderer2 } from '@angular/core';
- import { SliderElementDirective } from './slider-element.directive';
- export declare class SliderHandleDirective extends SliderElementDirective {
- active: boolean;
- role: string;
- tabindex: string;
- ariaOrientation: string;
- ariaLabel: string;
- ariaLabelledBy: string;
- ariaValueNow: string;
- ariaValueText: string;
- ariaValueMin: string;
- ariaValueMax: string;
- focus(): void;
- constructor(elemRef: ElementRef, renderer: Renderer2);
- }
|