index.ts 417 B

1234567891011121314151617181920212223242526
  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. const TUIChatKit = new Server();
  12. TUIChatKit.init();
  13. export {
  14. TUIKit,
  15. TUIChatKit,
  16. TUIComponents,
  17. TUIChat,
  18. TUIConversation,
  19. TUIContact,
  20. TUISearch,
  21. TUIGroup,
  22. genTestUserSig,
  23. };