UNPKG

491 BTypeScriptView Raw
1import { ElementRef, OnInit } from '@angular/core';
2export 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}
18export declare class CountUpModule {
19}