UNPKG

@connectycube/chat-widget

Version:

A React component that seamlessly integrates ConnectyCube's real-time chat capabilities into your web applications. This widget offers an out-of-the-box solution for embedding chat features—such as instant messaging, user presence, and file sharing—withou

9 lines (8 loc) 341 B
interface UnreadCountState { unreadCount: number; setUnreadCount: (count: number) => void; resetUnreadCount: () => void; } declare const useUnreadCountStore: import('zustand').UseBoundStore<import('zustand').StoreApi<UnreadCountState>>; export declare const resetUnreadCountStore: () => void; export default useUnreadCountStore;