1 | import { EventEmitter, ChangeDetectorRef, OnDestroy, ElementRef } from '@angular/core';
|
2 | import * as i0 from "@angular/core";
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export declare class CountUpDirective implements OnDestroy {
|
13 | private cd;
|
14 | countDuration: number;
|
15 | countPrefix: string;
|
16 | countSuffix: string;
|
17 | valueFormatting: any;
|
18 | set countDecimals(val: number);
|
19 | get countDecimals(): number;
|
20 | set countTo(val: any);
|
21 | get countTo(): any;
|
22 | set countFrom(val: any);
|
23 | get countFrom(): any;
|
24 | countChange: EventEmitter<any>;
|
25 | countFinish: EventEmitter<any>;
|
26 | nativeElement: any;
|
27 | value: any;
|
28 | formattedValue: string;
|
29 | private animationReq;
|
30 | private _countDecimals;
|
31 | private _countTo;
|
32 | private _countFrom;
|
33 | constructor(cd: ChangeDetectorRef, element: ElementRef);
|
34 | ngOnDestroy(): void;
|
35 | start(): void;
|
36 | static ɵfac: i0.ɵɵFactoryDeclaration<CountUpDirective, never>;
|
37 | static ɵcmp: i0.ɵɵComponentDeclaration<CountUpDirective, "[ngx-charts-count-up]", never, { "countDuration": { "alias": "countDuration"; "required": false; }; "countPrefix": { "alias": "countPrefix"; "required": false; }; "countSuffix": { "alias": "countSuffix"; "required": false; }; "valueFormatting": { "alias": "valueFormatting"; "required": false; }; "countDecimals": { "alias": "countDecimals"; "required": false; }; "countTo": { "alias": "countTo"; "required": false; }; "countFrom": { "alias": "countFrom"; "required": false; }; }, { "countChange": "countChange"; "countFinish": "countFinish"; }, never, never, false, never>;
|
38 | }
|