UNPKG

@fle-ui/plus-im-record

Version:
16 lines (15 loc) 448 B
import React from 'react'; import { IMMessage } from '../@types'; import { RecordSession } from '../ChatMessageList'; import './index.less'; export interface IParseSessionProps { prefix?: string; keyword?: string; h5?: boolean; msg: IMMessage; isSessionEnd?: boolean; onChartHistoryClick?: Function; recordSession?: RecordSession; } declare const ParseSession: React.FC<IParseSessionProps>; export default ParseSession;