UNPKG

331 BPlain TextView Raw
1import {ProgressTask} from "../interfaces/progress-task";
2import {injectable} from "inversify";
3
4@injectable()
5export class ProgressTaskImpl implements ProgressTask {
6 id: string;
7 msg: string;
8 //noinspection JSUnusedGlobalSymbols
9 current: number;
10 //noinspection JSUnusedGlobalSymbols
11 total: number;
12 statusItem: any;
13}