countUp.module.d.ts 491 B

12345678910111213141516171819
  1. import { ElementRef, OnInit } from '@angular/core';
  2. export declare class CountUpDirective implements OnInit {
  3. private el;
  4. options: any;
  5. startVal: number;
  6. private _endVal;
  7. endVal: number;
  8. duration: number;
  9. decimals: number;
  10. reanimateOnClick: boolean;
  11. ngOnInit(): void;
  12. onClick(): void;
  13. private _countUp;
  14. constructor(el: ElementRef);
  15. private createCountUp(sta, end, dec, dur);
  16. private animate();
  17. }
  18. export declare class CountUpModule {
  19. }