/// import { GetProps, TooltipProps, Typography } from 'antd'; export type TypographyText = GetProps; export interface TextEllipsisProps extends TypographyText { /** 容器宽度 */ width?: string | number; /** 最大显示行数 */ rows?: number; /** 是否显示tooltip */ tooltip?: TooltipProps; } export type TextEllipsisType = React.FC;