Fixed: angular2 beta

This commit is contained in:
buchslava
2016-02-02 18:42:21 +02:00
parent 468fe762b1
commit 16350eb5fb
47 changed files with 41696 additions and 26 deletions

View File

@@ -0,0 +1,32 @@
import { OnInit, OnDestroy } from 'angular2/core';
export declare class Progress implements OnInit {
animate: boolean;
max: number;
private addClass;
bars: Array<any>;
private _max;
constructor();
ngOnInit(): void;
addBar(bar: Bar): void;
removeBar(bar: Bar): void;
}
export declare class Bar implements OnInit, OnDestroy {
progress: Progress;
type: string;
value: number;
percent: number;
transition: string;
private _value;
constructor(progress: Progress);
ngOnInit(): void;
ngOnDestroy(): void;
recalculatePercentage(): void;
}
export declare class Progressbar {
private animate;
private max;
private type;
private value;
}
export declare const PROGRESSBAR_DIRECTIVES: Array<any>;
export declare const progressbar: Array<any>;