You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
InternshipProject/node_modules/antd/lib/typography/Base/Ellipsis.d.ts

15 lines
473 B

import * as React from 'react';
export interface EllipsisProps {
enabledMeasure?: boolean;
text?: React.ReactNode;
width: number;
rows: number;
children: (cutChildren: React.ReactNode[], needEllipsis: boolean) => React.ReactNode;
onEllipsis: (isEllipsis: boolean) => void;
}
declare const Ellipsis: {
({ enabledMeasure, children, text, width, rows, onEllipsis }: EllipsisProps): JSX.Element;
displayName: string;
};
export default Ellipsis;