diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-06-07 02:15:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-06-07 02:15:31 +0900 |
| commit | 3e6997c34ee26cbc501e2af6798f253a38bb75d7 (patch) | |
| tree | f9f5640bbe1ab309c623012a680be561ec07b603 /src/utils | |
| parent | Fix bug (diff) | |
| download | sharkey-3e6997c34ee26cbc501e2af6798f253a38bb75d7.tar.gz sharkey-3e6997c34ee26cbc501e2af6798f253a38bb75d7.tar.bz2 sharkey-3e6997c34ee26cbc501e2af6798f253a38bb75d7.zip | |
Refactor
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/cli/progressbar.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/cli/progressbar.ts b/src/utils/cli/progressbar.ts index 1a0023e8db..4afb4b0904 100644 --- a/src/utils/cli/progressbar.ts +++ b/src/utils/cli/progressbar.ts @@ -1,11 +1,11 @@ -import * as ev from 'events'; +import { EventEmitter } from 'events'; import * as readline from 'readline'; import * as chalk from 'chalk'; /** * Progress bar */ -export default class extends ev.EventEmitter { +export default class extends EventEmitter { public max: number; public value: number; public text: string; |