UNPKG
notbank
Version:
latest (2.4.0-alpha)
2.4.0-alpha
2.3.0-alpha
2.2.0-alpha
2.1.0
2.0.2
2.0.1
2.0.1-alpha
2.0.0-alpha
1.1.0-alpha
1.0.0
1.0.0-alpha
The Notbank for Node.js
notbank.exchange
notbank-exchange/notbank-node
notbank
/
dist
/
core
/
websocket
/
messageFrame.d.ts
15 lines
(14 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
declare
enum
MessageType
{
REQUEST
=
0
,
REPLY
=
1
,
SUBSCRIBE_TO_EVENT
=
2
,
EVENT
=
3
,
UNSUBSCRIBE_FROM_EVENT
=
4
,
ERROR
=
5
}
export
interface
MessageFrame
{
m
:
MessageType
;
i
:
number
;
n
:
string
;
o
:
any
; }