bettercx-widget
Version:
Professional AI-powered chat widget for BetterCX platform. Seamlessly integrate intelligent customer support into any website.
17 lines (16 loc) • 683 B
JavaScript
/**
* @fileoverview BetterCX Widget - Production-ready embeddable chat widget
*
* This is the main entry point for the BetterCX Widget library.
* It exports the web component and related utilities.
*/
// Export the main widget component
export { BetterCXWidget } from './components/bettercx-widget/bettercx-widget';
// Export services
export { AuthService } from './services/auth.service';
export { ApiService } from './services/api.service';
export { ThemeService } from './services/theme.service';
// Note: React wrapper is built separately and available at 'bettercx-widget/react'
// Export utilities
export { format } from './utils/utils';
//# sourceMappingURL=index.js.map