Files
DevToysWeb/types/route.ts

6 lines
146 B
TypeScript

import { UrlObject } from "url";
import { LinkProps } from "next/link";
export type ValidHref = Exclude<LinkProps<unknown>["href"], UrlObject>;