12 lines
331 B
JavaScript
12 lines
331 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var Event = /** @class */ (function () {
|
|
function Event(type, init) {
|
|
this.type = type;
|
|
if (init)
|
|
Object.assign(this, init);
|
|
}
|
|
return Event;
|
|
}());
|
|
exports.Event = Event;
|
|
//# sourceMappingURL=Event.js.map
|