(event: string)
| 3 | export const myCustomToken: Token = bar => `This is the bar ${bar.title}` |
| 4 | |
| 5 | export const eventsToken = (event: string): Token => bar => |
| 6 | `${bar.listenerCount(event)} listeners bound` |
| 7 | |
| 8 | initSimpleBar({ |
| 9 | bar: new ProgressBar({ total: 100 }), |