-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstalkjs.js
32 lines (32 loc) · 1.02 KB
/
stalkjs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* Stalk-JavaScript, Node.js client. Supported react, react-native.
* Support by @ Ahoo Studio.co.th
*/
export { StalkJS } from "./lib/browser/StalkJS";
export { ServerImp } from "./lib/browser/ServerImplement";
export { ServerParam } from "./lib/utils/PomeloUtils";
export { HttpStatusCode } from "./lib/utils/index";
/**
* Core server implementation.
*/
// export import ServerParam = ServerParam;
// export import IPomelo = IPomelo;
// export import IPomeloResponse = IPomeloResponse;
// export import IServer = IServer;
/**
* All events.
*/
export * from "./lib/browser/events/index";
/**
* APIs interface implementation.
*/
export { API } from "./lib/browser/API";
export { GateAPI } from "./lib/browser/api/GateAPI";
export { LobbyAPI } from "./lib/browser/api/LobbyAPI";
export { ChatRoomAPI } from "./lib/browser/api/ChatRoomAPI";
export { PushAPI } from "./lib/browser/api/PushAPI";
export { CallingAPI } from "./lib/browser/api/CallingAPI";
/**
* Starterkit
*/
export { PushDataListener } from "./starter/PushDataListener";