@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
14 lines (13 loc) • 435 B
TypeScript
import { default as React } from 'react';
import { ChatType } from './new-chat-dialog';
export interface SearchedUserProps {
id: number;
name: string;
avatar?: string;
chatType: ChatType;
onStartChat: (userId: number) => void;
isSelected: boolean;
onSelectUser: (userId: number, isSelected: boolean) => void;
}
declare const _default: React.NamedExoticComponent<SearchedUserProps>;
export default _default;