easemob-chat-uikit
Version:
   ![GitHub last c
10 lines (9 loc) • 373 B
TypeScript
import { CurrentConversation } from '../store/ConversationStore';
import { ChatType } from '../types/messageType';
export declare function resetCache(chatType: ChatType, conversationId: string): void;
declare const useHistoryMessages: (cvs: CurrentConversation) => {
historyMsgs: any;
loadMore: () => void;
isLoading: boolean;
};
export { useHistoryMessages };