Fixed: angular2 beta
This commit is contained in:
32
build/node_modules/ng2-bootstrap/components/progressbar/progressbar.d.ts
generated
vendored
Normal file
32
build/node_modules/ng2-bootstrap/components/progressbar/progressbar.d.ts
generated
vendored
Normal 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>;
|
||||
Reference in New Issue
Block a user