1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | var 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 | }());
|
14 | exports.ProgressEvent = ProgressEvent;
|
15 | //# sourceMappingURL=progress-event.js.map |
\ | No newline at end of file |