@theoplayer/react-native-engage
Version:
Engage connector for @theoplayer/react-native
20 lines (18 loc) • 335 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BaseEvent = void 0;
/**
* Fired when an event occurs.
*
* @public
*/
class BaseEvent {
constructor(type, date = new Date()) {
this.type = type;
this.date = date;
}
}
exports.BaseEvent = BaseEvent;
//# sourceMappingURL=Event.js.map