UNPKG
@pubby.club/sdk
Version:
latest (0.0.1)
next (0.0.1)
0.0.1
Pubby Development Kit
github.com/pubby-club/sdk
pubby-club/sdk
@pubby.club/sdk
/
types
/
websocket
/
outgoing-message.d.ts
7 lines
(6 loc)
•
157 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
abstract
class
OutgoingMessage
{
static
id
:
string
;
protected
data
:
any
[];
constructor
(
...
data
:
any
[]
);
toMessage
():
any
[]; }