UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 359 B
import React from 'react'; import type { Channel, ExtendableGenerics } from 'stream-chat'; export type ChannelPreviewActionButtonsProps<SCG extends ExtendableGenerics> = { channel: Channel<SCG>; }; export declare function ChannelPreviewActionButtons<SCG extends ExtendableGenerics>({ channel, }: ChannelPreviewActionButtonsProps<SCG>): React.JSX.Element;