@morjs/runtime-web
Version:
mor runtime for web
15 lines • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TiGaEvent = void 0;
class TiGaEvent extends Event {
constructor(typeArg, eventInitDict) {
super(typeArg, eventInitDict);
this.detail = eventInitDict.detail;
this.other = eventInitDict.other;
if (this.other) {
Object.assign(this, this.other);
}
}
}
exports.TiGaEvent = TiGaEvent;
//# sourceMappingURL=TigaEvent.js.map