slider-handle.directive.d.ts 526 B

12345678910111213141516
  1. import { ElementRef, Renderer2 } from '@angular/core';
  2. import { SliderElementDirective } from './slider-element.directive';
  3. export declare class SliderHandleDirective extends SliderElementDirective {
  4. active: boolean;
  5. role: string;
  6. tabindex: string;
  7. ariaOrientation: string;
  8. ariaLabel: string;
  9. ariaLabelledBy: string;
  10. ariaValueNow: string;
  11. ariaValueText: string;
  12. ariaValueMin: string;
  13. ariaValueMax: string;
  14. focus(): void;
  15. constructor(elemRef: ElementRef, renderer: Renderer2);
  16. }