@connectycube/chat-widget
Version:
A customizable React chat widget built on the ConnectyCube platform, enabling real-time messaging, calls, and user engagement in any web app.
12 lines • 414 B
TypeScript
export { default } from './App';
export type { AppProps as ConnectyCubeChatWidgetProps } from './App';
export type ChatWidgetInWindow = {
initialNotification?: MessageEvent['data'];
open?: () => void;
close?: () => void;
toggle?: () => void;
};
export type WindowWithChatWidget = Window & typeof globalThis & {
ConnectyCubeChatWidget?: ChatWidgetInWindow;
};
//# sourceMappingURL=index.d.ts.map