UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 245 B
import React from 'react'; export type TypingIndicatorProps = { /** Whether the typing indicator is in a thread */ threadList?: boolean; }; export declare const TypingIndicator: (props: TypingIndicatorProps) => React.JSX.Element | null;