econ
Version:
Event Collections
16 lines • 561 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var std = require("tstl");
var CollectionEvent = /** @class */ (function () {
function CollectionEvent(type, first, last) {
this.type = type;
this.first = first;
this.last = last;
}
CollectionEvent.prototype[Symbol.iterator] = function () {
return new std.base.ForOfAdaptor(this.first, this.last);
};
return CollectionEvent;
}());
exports.CollectionEvent = CollectionEvent;
//# sourceMappingURL=CollectionEvent.js.map
;