33 Do NOT manually edit this file or your changes will be lost.
44*/
55
6- import {
7- NotHandled ,
8- NotMatched ,
9- GetPaths ,
10- PostPaths ,
11- GetablePath ,
12- GetableHref ,
13- PostablePath ,
14- PostableHref ,
15- Platform ,
16- } from "@marko/run/namespace" ;
6+ import { NotHandled , NotMatched , GetPaths , PostPaths , GetablePath , GetableHref , PostablePath , PostableHref , Platform } from "@marko/run/namespace" ;
177import type * as Run from "@marko/run" ;
188
9+
1910declare module "@marko/run" {
20- interface AppData extends Run . DefineApp < {
21- routes : {
22- "/" : { verb : "get" } ;
23- "/client-only" : { verb : "get" } ;
24- "/virtual" : { verb : "get" } ;
25- } ;
26- } > { }
11+ interface AppData extends Run . DefineApp < {
12+ routes : {
13+ "/" : { verb : "get" ; } ;
14+ "/client-only" : { verb : "get" ; } ;
15+ "/virtual" : { verb : "get" ; } ;
16+ }
17+ } > { }
2718}
2819
2920declare module "../src/routes/+page.marko" {
3021 namespace MarkoRun {
31- export {
32- NotHandled ,
33- NotMatched ,
34- GetPaths ,
35- PostPaths ,
36- GetablePath ,
37- GetableHref ,
38- PostablePath ,
39- PostableHref ,
40- Platform ,
41- } ;
22+ export { NotHandled , NotMatched , GetPaths , PostPaths , GetablePath , GetableHref , PostablePath , PostableHref , Platform } ;
4223 export type Route = Run . Routes [ "/" ] ;
4324 export type Context = Run . MultiRouteContext < Route > & Marko . Global ;
4425 export type Handler = Run . HandlerLike < Route > ;
@@ -49,17 +30,7 @@ declare module "../src/routes/+page.marko" {
4930
5031declare module "../src/routes/client-only/+page.marko" {
5132 namespace MarkoRun {
52- export {
53- NotHandled ,
54- NotMatched ,
55- GetPaths ,
56- PostPaths ,
57- GetablePath ,
58- GetableHref ,
59- PostablePath ,
60- PostableHref ,
61- Platform ,
62- } ;
33+ export { NotHandled , NotMatched , GetPaths , PostPaths , GetablePath , GetableHref , PostablePath , PostableHref , Platform } ;
6334 export type Route = Run . Routes [ "/client-only" ] ;
6435 export type Context = Run . MultiRouteContext < Route > & Marko . Global ;
6536 export type Handler = Run . HandlerLike < Route > ;
@@ -70,17 +41,7 @@ declare module "../src/routes/client-only/+page.marko" {
7041
7142declare module "../src/routes/virtual/+page.marko" {
7243 namespace MarkoRun {
73- export {
74- NotHandled ,
75- NotMatched ,
76- GetPaths ,
77- PostPaths ,
78- GetablePath ,
79- GetableHref ,
80- PostablePath ,
81- PostableHref ,
82- Platform ,
83- } ;
44+ export { NotHandled , NotMatched , GetPaths , PostPaths , GetablePath , GetableHref , PostablePath , PostableHref , Platform } ;
8445 export type Route = Run . Routes [ "/virtual" ] ;
8546 export type Context = Run . MultiRouteContext < Route > & Marko . Global ;
8647 export type Handler = Run . HandlerLike < Route > ;
0 commit comments