vitest-marbles
Version:
Marble testing helpers library for RxJs and Jest
16 lines • 483 B
JavaScript
var NotificationEvent = /** @class */ (function () {
function NotificationEvent(start) {
this.start = start;
this.marbles = '';
}
Object.defineProperty(NotificationEvent.prototype, "end", {
get: function () {
return this.start + this.marbles.length;
},
enumerable: false,
configurable: true
});
return NotificationEvent;
}());
export { NotificationEvent };
//# sourceMappingURL=notification-event.js.map