UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 336 B
import React from 'react'; import type { MessageTimestampProps } from './MessageTimestamp'; export type MessageEditedTimestampProps = MessageTimestampProps & { open: boolean; }; export declare function MessageEditedTimestamp({ message: propMessage, open, ...timestampProps }: MessageEditedTimestampProps): React.JSX.Element | null;