8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
|
import { AnchorHTMLAttributes } from 'react';
|
||
|
import { LinkProps } from 'next/link';
|
||
|
|
||
|
type SimpleLinkProps = {
|
||
|
linkProps: Omit<LinkProps, 'passRef'>;
|
||
|
anchorProps?: AnchorHTMLAttributes<HTMLAnchorElement>;
|
||
|
};
|