UNPKG
solid-router
Version:
latest (0.3.3)
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.5
0.1.4
0.1.1
0.1.0
A declarative router for solid-js
github.com/mduclehcm/solid-router
mduclehcm/solid-router
solid-router
/
types
/
RouteDefinition.d.ts
7 lines
(6 loc)
•
149 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
RouteOptions
}
from
'./types'
;
export
interface
RouteDefinition
{
path
?:
string
;
options
?:
RouteOptions
;
children
?:
Function
; }