UNPKG

@klever-one/web-sdk

Version:

Web SDK for integrating real-time room management and streaming functionality into web applications

23 lines (22 loc) 714 B
interface UnifiedConversationProps { apiKey: string; width?: number; onToggleFullscreen?: () => void; isFullscreen?: boolean; className?: string; } /** * UnifiedConversation - 통합 Hook을 사용한 간소화된 대화 컴포넌트 * * 장점: * - 단일 Hook으로 모든 기능 관리 * - 복잡한 props 전달 불필요 * - 통합된 상태 관리 * - 간소화된 이벤트 처리 */ export declare const UnifiedConversation: React.FC<UnifiedConversationProps>; interface UnifiedConversationExampleProps { apiKey: string; } export declare const UnifiedConversationExample: ({ apiKey, }: UnifiedConversationExampleProps) => import("react/jsx-runtime").JSX.Element; export {};