38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import ChannelCreate from "./api/channel/create";
|
|
import ChannelEdit from "./api/channel/edit";
|
|
import ChannelGet from "./api/channel/get";
|
|
import ChannelList from "./api/channel/list";
|
|
import CommunityCreate from "./api/community/create";
|
|
import CommunityEdit from "./api/community/edit";
|
|
import CommunityGet from "./api/community/get";
|
|
import CommunityList from "./api/community/list";
|
|
import Me from "./api/me";
|
|
import MessageDelete from "./api/message/delete";
|
|
import MessageList from "./api/message/list";
|
|
import MessageSend from "./api/message/send";
|
|
import PrimarySignin from "./api/primary/signin";
|
|
import PrimarySignup from "./api/primary/signup";
|
|
import ServerInfo from "./api/server-info";
|
|
import SetupCreateAdmin from "./api/setup/create-admin";
|
|
import SetupInitilization from "./api/setup/initialization";
|
|
|
|
type ApiMap =
|
|
SetupCreateAdmin &
|
|
SetupInitilization &
|
|
ServerInfo &
|
|
PrimarySignin &
|
|
PrimarySignup &
|
|
Me &
|
|
CommunityCreate &
|
|
CommunityEdit &
|
|
CommunityGet &
|
|
CommunityList &
|
|
ChannelCreate &
|
|
ChannelEdit &
|
|
ChannelGet &
|
|
ChannelList &
|
|
MessageDelete &
|
|
MessageSend &
|
|
MessageList;
|
|
|
|
export default ApiMap; |