isomtrik-quickchat
Version:
isomtrik-quickchat is a lightweight, real-time chat component built with Stencil JS. It is designed to be seamlessly integrated into web applications, offering customizable and responsive chat functionalities. The module supports both CommonJS and ES modu
30 lines (29 loc) • 1.02 kB
TypeScript
/**
* @fileoverview entry point for your component library
*
* This is the entry point for your component library. Use this file to export utilities,
* constants or data structure that accompany your components.
*
* DO NOT use this file to export your components. Instead, use the recommended approaches
* to consume components of this package as outlined in the `README.md`.
*/
export { format } from './utils/utils';
export type * from './components.d.ts';
export declare const initializeChat: (props: {
baseUrl?: string;
hostUrl?: string;
licenseKey: string;
appSecret: string;
userSecret: string;
userToken: string;
isometrikUserId: string;
projectId: string;
keysetId: string;
accountId: string;
conversationId: string;
defaultTheme?: "dark" | "light";
darkThemeUrl?: string;
lightThemeUrl?: string;
}) => void;
export declare const closeChat: (conversationId: string) => void;
export declare const switchChatTheme: (theme: "dark" | "light") => void;