forked from livechat/lc-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
28 lines (24 loc) · 778 Bytes
/
index.ts
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
import AgentWeb from "./src/agent/web";
import AgentRTM from "./src/agent/rtm";
import * as AgentObjects from "./src/agent/structures";
import CustomerWeb from "./src/customer/web";
import CustomerRTM from "./src/customer/rtm";
import * as CustomerObjects from "./src/customer/structures";
import ConfigurationAPI from "./src/configuration";
import * as ConfigurationObjects from "./src/configuration/structures";
export const Agent = {
Web: AgentWeb,
RTM: AgentRTM,
Objects: AgentObjects
};
export const Customer = {
Web: CustomerWeb,
RTM: CustomerRTM,
Objects: CustomerObjects
};
export const Configuration = {
Web: ConfigurationAPI,
Objects: ConfigurationObjects
};
export * as Webhooks from "./src/webhooks";
export * as Auth from "./src/authorization";