import type { MessageStatus, MessageDirection } from '../DbChatBubble/types'; /** 元数据组件 Props */ export interface DbChatMetaProps { /** 时间戳 */ timestamp: number; /** 消息状态 */ status: MessageStatus; /** 消息方向 */ direction: MessageDirection; /** 是否已读 */ isRead?: boolean; /** 是否显示时间 */ showTime?: boolean; /** 是否显示状态 */ showStatus?: boolean; } export type { MessageStatus, MessageDirection };