UNPKG

@sendbird/uikit-chat-hooks

Version:

A set of React hooks for integrating Sendbird chat functionality into your React app.

9 lines (8 loc) 278 B
import { SendbirdChatSDK, SendbirdGroupChannel } from '@sendbird/uikit-utils'; type State = { loading: boolean; channel?: SendbirdGroupChannel; error?: unknown; }; export declare const useGroupChannel: (sdk: SendbirdChatSDK, channelUrl: string) => State; export {};