UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

14 lines (12 loc) 331 B
import {ProgressTask} from "../interfaces/progress-task"; import {injectable} from "inversify"; @injectable() export class ProgressTaskImpl implements ProgressTask { id: string; msg: string; //noinspection JSUnusedGlobalSymbols current: number; //noinspection JSUnusedGlobalSymbols total: number; statusItem: any; }