UNPKG

@droppii-org/chat-sdk

Version:

Droppii React Chat SDK

20 lines 1.01 kB
import "./locales/i18n"; import DChatDeskMessage from "./screens/deskMessage"; import DChatBubble from "./screens/chatBubble"; import { Platform, LogLevel, SessionType } from "@openim/wasm-client-sdk"; import { Icon } from "./components/icon"; import useUserStore from "./store/user"; import { DChatInitAndLoginConfig, DChatApplicationType } from "./types/chat"; import useAuthStore from "./store/auth"; export * from "ahooks"; export { isNil } from "lodash"; export { default as qs } from "query-string"; export * from "antd/es/table"; export { ChatProvider, useChatContext } from "./context/ChatContext"; export { DChatDeskMessage, DChatBubble, Icon }; export { useDChatAuth } from "./hooks/user/useAuth"; export { useUpdateFcmToken } from "./hooks/user/useUpdateFcmToken"; export { useUserStore, DChatApplicationType, useAuthStore }; export { Platform as DChatPlatform, LogLevel as DChatLogLevel, SessionType as DChatSessionType, }; export type { DChatInitAndLoginConfig }; //# sourceMappingURL=index.d.ts.map