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
/
incoming
/
user-status.event.d.ts
8 lines
(7 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
IncomingMessage
}
from
"../incoming-message"
;
export
declare
class
UserStatusResponse
extends
IncomingMessage
{
userId
:
string
;
status
:
any
;
static
id
:
string
;
constructor
(
userId
:
string
,
status
:
any
); }