stream-chat-react
Version:
React components to create chat conversations or livestream style chat
8 lines (7 loc) • 360 B
TypeScript
import type { Channel } from 'stream-chat';
import type { DefaultStreamChatGenerics } from '../../../types/types';
export declare const useIsChannelMuted: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(channel: Channel<StreamChatGenerics>) => {
createdAt: Date | null;
expiresAt: Date | null;
muted: boolean;
};