UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

8 lines (7 loc) 312 B
import type { FunctionalComponent } from 'vue'; import type { BlockProps, EllipsisConfig } from './Base'; export interface TextProps extends BlockProps { ellipsis?: boolean | Omit<EllipsisConfig, 'expandable' | 'rows' | 'onExpand'>; } declare const Text: FunctionalComponent<TextProps>; export default Text;