UNPKG

368 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2export declare class CountoDirective {
3 countoChange: EventEmitter<{}>;
4 countoEnd: EventEmitter<{}>;
5 private _timer;
6 private _duration;
7 private _countTo;
8 private _countFrom;
9 private _step;
10 duration: string;
11 countTo: string;
12 countFrom: string;
13 step: string;
14 run(): boolean;
15}