@@ -7,7 +7,7 @@ import type { ComponentConfig } from '../../types/tv'
|
7 | 7 | |
8 | 8 | type Link = ComponentConfig<typeof theme, AppConfig, 'link'> |
9 | 9 | |
10 | | -export interface LinkProps extends Omit<InertiaLinkProps, 'href' | 'onClick'>, /** @vue-ignore */ Omit<ButtonHTMLAttributes, 'type' | 'disabled'>, /** @vue-ignore */ Omit<AnchorHTMLAttributes, 'href' | 'target' | 'rel' | 'type'> { |
| 10 | +export interface LinkProps extends Partial<Omit<InertiaLinkProps, 'href' | 'onClick'>>, /** @vue-ignore */ Omit<ButtonHTMLAttributes, 'type' | 'disabled'>, /** @vue-ignore */ Omit<AnchorHTMLAttributes, 'href' | 'target' | 'rel' | 'type'> { |
11 | 11 | /** |
12 | 12 | * The element or component this component should render as when not a link. |
13 | 13 | * @defaultValue 'button' |
|