UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

5 lines (4 loc) 474 B
import type React from 'react'; import type { LocalMessage } from 'stream-chat'; export declare const reactionHandlerWarning = "Reaction handler was called, but it is missing one of its required arguments.\nMake sure the ChannelAction and ChannelState contexts are properly set and the hook is initialized with a valid message."; export declare const useReactionHandler: (message?: LocalMessage) => (reactionType: string, event?: React.BaseSyntheticEvent) => Promise<void>;