UNPKG

ntts

Version:

A CLI tool for refactoring an existing NodeJs application to a fully functional TypeScript application.

6 lines (4 loc) 193 B
import ProgressBar from 'progress'; export const generateProgressBar = (total: number): ProgressBar => { return new ProgressBar('[:bar] :current/:total', { total, incomplete: ' ' }); }