@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
10 lines (9 loc) • 333 B
TypeScript
interface ProfileState {
visible: boolean;
userId?: number;
showProfile: (userId?: number) => void;
hideProfile: () => void;
}
declare const useProfileStore: import('zustand').UseBoundStore<import('zustand').StoreApi<ProfileState>>;
export declare const resetProfileStore: () => void;
export default useProfileStore;