UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

12 lines (11 loc) 404 B
import type { GroupChannel } from '@sendbird/chat/groupChannel'; import { ChannelSettingsState } from './types'; export declare const useChannelSettings: () => { state: ChannelSettingsState; actions: { setChannel: (channel: GroupChannel) => void; setLoading: (loading: boolean) => void; setInvalid: (invalid: boolean) => void; }; }; export default useChannelSettings;