UNPKG
@izzyjs/route
Version:
latest (2.1.14)
2.1.14
2.1.7
2.1.7-1
2.1.7-0
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.0
1.2.0
1.1.0-0
1.0.1-1
1.0.1-0
1.0.0-1
1.0.0-0
0.0.2-0
0.0.1-1
0.0.1-0
Use your AdonisJs routes in your Inertia.js application
github.com/izzyjs/route
izzyjs/route
@izzyjs/route
/
build
/
src
/
plugins
/
edge.d.ts
8 lines
(7 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
PluginFn
}
from
'edge.js/types'
;
import
type
{
SerializedRoute
}
from
'../types/manifest.js'
;
type
EdgePluginIzzyOptions
=
(
routes
:
SerializedRoute
[],
config
?: { baseUrl?:
string
; }
) =>
PluginFn
<
undefined
>;
export
declare
const
edgePluginIzzy
:
EdgePluginIzzyOptions
;
export
{};