as-event-tracker
Version:
Logs events in the browser based on client interactions.
13 lines • 363 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var Component = (function () {
function Component(init) {
this.type = "";
this.id = "";
this.elementTree = "";
Object.assign(this, init);
}
return Component;
}());
exports.default = Component;
//# sourceMappingURL=Component.js.map
;