mutation-summary
Version:
Makes observing the DOM fast and easy
16 lines • 588 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChildListChange = void 0;
var NodeMap_1 = require("./NodeMap");
var ChildListChange = /** @class */ (function () {
function ChildListChange() {
this.added = new NodeMap_1.NodeMap();
this.removed = new NodeMap_1.NodeMap();
this.maybeMoved = new NodeMap_1.NodeMap();
this.oldPrevious = new NodeMap_1.NodeMap();
this.moved = undefined;
}
return ChildListChange;
}());
exports.ChildListChange = ChildListChange;
//# sourceMappingURL=ChildListChange.js.map
;