Event.js 116 Bytes
Newer Older
Alexander Bazo committed
1 2 3 4 5 6 7 8 9 10
class Event {

  constructor(type, data) {
    this.type = type;
    this.data = data;
  }

}

export default Event;