mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
540 B
TypeScript
21 lines
540 B
TypeScript
// Type definitions for ngProgress 1.0.7
|
|
// Project: http://victorbjelkholm.github.io/ngProgress/
|
|
// Definitions by: Martin McWhorter <https://github.com/martinmcwhorter>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module NgProgress {
|
|
|
|
export interface INgProgress {
|
|
start(): void;
|
|
height(height: string): void;
|
|
color(color: string): void;
|
|
status(): number;
|
|
stop(): void;
|
|
set(value: number): void;
|
|
reset(): void;
|
|
complete(): void;
|
|
}
|
|
|
|
}
|
|
|