Definitions for ngProgress

Definitions for https://github.com/victorbjelkholm/ngprogress
This commit is contained in:
Martin McWhorter
2014-12-15 12:19:47 +00:00
parent 22d7bbaa48
commit a943bcf95d
2 changed files with 35 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// 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(): string;
stop(): void;
set(value: number): void;
reset(): void;
complete(): void;
}
}