rittenhop-dev/versions/5.94.2/node_modules/@tryghost/ghost/build/common/event.base.js

13 lines
335 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseEvent = void 0;
class BaseEvent {
data;
timestamp;
constructor(data, timestamp = new Date()) {
this.data = data;
this.timestamp = timestamp;
}
}
exports.BaseEvent = BaseEvent;
//# sourceMappingURL=event.base.js.map