UNPKG

457 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var ProgressEvent = /** @class */ (function () {
4 function ProgressEvent(type) {
5 this.type = type;
6 this.bubbles = false;
7 this.cancelable = false;
8 this.loaded = 0;
9 this.lengthComputable = false;
10 this.total = 0;
11 }
12 return ProgressEvent;
13}());
14exports.ProgressEvent = ProgressEvent;
15//# sourceMappingURL=progress-event.js.map
\No newline at end of file