UNPKG
dew-router
Version:
latest (0.5.0)
next (0.2.0-next.16)
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0-next.16
0.2.0-next.15
0.2.0-next.14
0.2.0-alpha.13
0.2.0-alpha.9
0.2.0-alpha.8
0.2.0-alpha.7
0.2.0-alpha.6
0.2.0-alpha.5
0.2.0-alpha.4
0.2.0-alpha.3
0.2.0-alpha.2
0.2.0-alpha.1
0.2.0-alpha.0
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
dew-router
/
dist
/
RouterLink.d.ts
8 lines
(7 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="react" />
declare
type
HtmlAnchorProps
=
JSX
.
IntrinsicElements
[
'a'
];
export
interface
RouterLinkProps
extends
HtmlAnchorProps
{
to
:
string
; }
export
declare
function
RouterLink
(
{ to, onClick, ...rest }:
RouterLinkProps
):
JSX
.
Element
;
export
{};