UNPKG
rx-sandbox
Version:
beta (2.0.0-beta.3)
latest (2.0.5)
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Marble diagram DSL based test suite for RxJS 6/7
github.com/kwonoj/rx-sandbox
kwonoj/rx-sandbox
rx-sandbox
/
src
/
marbles
/
SubscriptionMarbleToken.ts
17 lines
(15 loc)
•
245 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** * Defines tokens for marble diagram DSL to represent Observable subscriptions. * */
export
enum
SubscriptionMarbleToken
{
/** * Subscription started */
SUBSCRIBE =
'^'
,
/** * Unsubscribed. * */
UNSUBSCRIBE =
'!'
}