stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 358 B
TypeScript
import React from 'react';
import type { LocalMessage } from 'stream-chat';
import type { TimestampFormatterOptions } from '../../i18n/types';
export type MessageTimestampProps = TimestampFormatterOptions & {
customClass?: string;
message?: LocalMessage;
};
export declare const MessageTimestamp: (props: MessageTimestampProps) => React.JSX.Element;