import { ComponentProps } from 'react';

import { Link } from '@/i18n/navigation';

type Href = ComponentProps<typeof Link>['href'];

export const asHref = (href: string | Href): Href => href as Href;
