summaryrefslogtreecommitdiff
path: root/src/utils/cli/progressbar.ts
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2017-01-03 04:36:13 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2017-01-03 04:36:13 +0900
commit44ef1c1a4a450253795557241290ae780ed70190 (patch)
treedfe92da1fe048de104753d9b15ee60d0ce9d266d /src/utils/cli/progressbar.ts
parentUpdate MachineInfo (diff)
downloadsharkey-44ef1c1a4a450253795557241290ae780ed70190.tar.gz
sharkey-44ef1c1a4a450253795557241290ae780ed70190.tar.bz2
sharkey-44ef1c1a4a450253795557241290ae780ed70190.zip
:sparkles:
Diffstat (limited to 'src/utils/cli/progressbar.ts')
-rw-r--r--src/utils/cli/progressbar.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/utils/cli/progressbar.ts b/src/utils/cli/progressbar.ts
index 19852b3ea3..273fc5c0cd 100644
--- a/src/utils/cli/progressbar.ts
+++ b/src/utils/cli/progressbar.ts
@@ -5,7 +5,7 @@ import * as chalk from 'chalk';
/**
* Progress bar
*/
-class ProgressBar extends ev.EventEmitter {
+export default class ProgressBar extends ev.EventEmitter {
public max: number;
public value: number;
public text: string;
@@ -76,8 +76,6 @@ class ProgressBar extends ev.EventEmitter {
}
}
-export default ProgressBar;
-
/**
* Clear current line
*/