mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import { UrlObject } from "url";
|
|
|
|
import { LinkProps } from "next/link";
|
|
|
|
export type ValidHref = Exclude<LinkProps<unknown>["href"], UrlObject>;
|