index.ts 507 B

12345678910111213141516171819202122232425262728
  1. import { genTestUserSig } from './debug';
  2. import Server from './server';
  3. import TUIComponents, {
  4. TUIChat,
  5. TUIConversation,
  6. TUIContact,
  7. TUISearch,
  8. TUIGroup,
  9. } from './components';
  10. import TUIKit from './index.vue';
  11. import { hideTUIChatFeatures } from './components/TUIChat/config';
  12. const TUIChatKit = new Server();
  13. TUIChatKit.init();
  14. export {
  15. TUIKit,
  16. TUIChatKit,
  17. TUIComponents,
  18. TUIChat,
  19. TUIConversation,
  20. TUIContact,
  21. TUISearch,
  22. TUIGroup,
  23. hideTUIChatFeatures,
  24. genTestUserSig,
  25. };