activity-calendar
Version:
a simple activity calendar
22 lines (21 loc) • 563 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var Event = (function () {
function Event(type) {
this.type = type;
this._data = {};
this._isPrevented = false;
}
Event.prototype.preventDefault = function () {
this._isPrevented = false;
};
Object.defineProperty(Event.prototype, "isPrevented", {
get: function () {
return this._isPrevented;
},
enumerable: false,
configurable: true
});
return Event;
}());
exports.default = Event;
;