We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab7dc2 commit 89c3f5cCopy full SHA for 89c3f5c
src/link.tsx
@@ -17,12 +17,7 @@ export type RegisteredLinkProps = RegisterLink extends { Link: infer Link }
17
?
18
| Omit<UnpackProps<Link>, "children">
19
| (Omit<HTMLAnchorProps, "children" | "href"> & {
20
- href:
21
- | `//${string}`
22
- | `https://${string}`
23
- | `http://${string}`
24
- | `#${string}`
25
- | string; // to handle mailto:mail@domain.fr or tel:0123456789 ...
+ href: string;
26
})
27
: Omit<HTMLAnchorProps, "children">;
28
0 commit comments