UNPKG

443 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3class Event {
4 constructor(event, target, payload) {
5 this.event = event;
6 this.target = target;
7 this.payload = payload;
8 }
9 getEvent() {
10 return this.event;
11 }
12 getTarget() {
13 return this.target;
14 }
15 getPayload() {
16 return this.payload;
17 }
18}
19exports.Event = Event;
20//# sourceMappingURL=Event.js.map
\No newline at end of file