antd-mobile
Version:
<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />
13 lines (12 loc) • 453 B
TypeScript
import { FC } from 'react';
import { NativeProps } from '../../utils/native-props';
import { PropagationEvent } from '../../utils/with-stop-propagation';
export declare type EllipsisProps = {
content: string;
direction?: 'start' | 'end' | 'middle';
rows?: number;
expandText?: string;
collapseText?: string;
stopPropagationForActionButtons?: PropagationEvent[];
} & NativeProps;
export declare const Ellipsis: FC<EllipsisProps>;