UNPKG

antdv-eoi

Version:

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

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