stream-chat-react
Version:
React components to create chat conversations or livestream style chat
8 lines (7 loc) • 305 B
TypeScript
import React from 'react';
import type { TimestampFormatterOptions } from '../../i18n/types';
export interface TimestampProps extends TimestampFormatterOptions {
customClass?: string;
timestamp?: Date | string;
}
export declare function Timestamp(props: TimestampProps): React.JSX.Element | null;