@ant-design/pro-chat
Version:
a solution for ai chat
10 lines (9 loc) • 417 B
TypeScript
/// <reference types="react" />
import { ChatListProps } from "../../../ChatList";
import { ChatListItemProps } from "../../../ChatList/ChatListItem";
interface ListProps extends Partial<ChatListProps> {
showTitle?: boolean;
itemShouldUpdate?: (prevProps: ChatListItemProps, nextProps: ChatListItemProps) => boolean;
}
declare const List: import("react").NamedExoticComponent<ListProps>;
export default List;