Files
rss-nostr-lambda/node_modules/websocket-polyfill/lib/events/Event.js
T

12 lines
331 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Event = /** @class */ (function () {
function Event(type, init) {
this.type = type;
if (init)
Object.assign(this, init);
}
return Event;
}());
exports.Event = Event;
//# sourceMappingURL=Event.js.map