UNPKG

@ant-design/pro-chat

Version:
10 lines (9 loc) 417 B
/// <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;