Files
tidal-dl-ng-webui/node_modules/flowbite/lib/cjs/dom/events.js
2024-12-27 22:31:23 +09:00

20 lines
695 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Events = /** @class */ (function () {
function Events(eventType, eventFunctions) {
if (eventFunctions === void 0) { eventFunctions = []; }
this._eventType = eventType;
this._eventFunctions = eventFunctions;
}
Events.prototype.init = function () {
var _this = this;
this._eventFunctions.forEach(function (eventFunction) {
if (typeof window !== 'undefined') {
window.addEventListener(_this._eventType, eventFunction);
}
});
};
return Events;
}());
exports.default = Events;
//# sourceMappingURL=events.js.map