livechat-widget
Version:
LiveChat Widget for Next.js applications
10 lines (8 loc) • 426 B
text/typescript
// Export components
export { default as ChatWidgetClient } from './components/chat/ChatWidgetClient';
export { default as ChatWidget } from './components/chat/ChatWidget';
// Export types
export type { ChatMessage, UserInfo } from './types/chat';
// Export props interfaces
export type { ChatWidgetProps } from './components/chat/ChatWidget';
export type { ChatWidgetClientProps } from './components/chat/ChatWidgetClient';