UNPKG
vitest-marbles
Version:
latest (0.0.1)
0.0.1
0.0.0
Marble testing helpers library for RxJs and Jest
vitest-marbles
/
src
/
notification-event.ts
8 lines
(7 loc)
•
161 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
class
NotificationEvent
{ marbles =
''
;
constructor
(
public
start
:
number
) {}
get
end
():
number
{
return
this
.
start
+
this
.
marbles
.
length
; } }