UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

8 lines (7 loc) 293 B
import type { PropsWithChildren } from 'react'; import React from 'react'; import type { CommandResponse } from 'stream-chat'; export type CommandItemProps = { entity: CommandResponse; }; export declare const CommandItem: (props: PropsWithChildren<CommandItemProps>) => React.JSX.Element;