UNPKG

ant-design-vue

Version:

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

8 lines (7 loc) 285 B
import { AnchorHTMLAttributes, FunctionalComponent } from 'vue'; import { BlockProps } from './Base'; export interface LinkProps extends BlockProps, Omit<AnchorHTMLAttributes, 'type'> { ellipsis?: boolean; } declare const Link: FunctionalComponent<LinkProps>; export default Link;