File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import type { OpenAPIV3_1 } from "openapi-types" ;
2+ import { addRoute , createRouter } from "rou3" ;
3+ import { compileRouter } from "rou3/compiler" ;
4+ import { compileFetchFunction } from "./internal/compile-fetch-function" ;
5+ import { compileRouteHandler } from "./internal/compile-route-handler" ;
6+ import { detectTransport } from "./internal/utils" ;
7+ import { buildOpenApiDocs , buildScalarHtml } from "./open-api" ;
18import type {
29 App ,
3- RouterData ,
4- RouteDef ,
510 BasePath ,
6- ServerSideFetch ,
7- LifeCycleHook ,
8- DefaultAppData ,
911 BasePrefix ,
12+ DefaultAppData ,
13+ LifeCycleHook ,
14+ LifeCycleHookName ,
15+ RouteDef ,
16+ RouterData ,
1017 SchemaAdapter ,
18+ ServerSideFetch ,
1119 Transport ,
12- LifeCycleHookName ,
1320} from "./types" ;
14- import { addRoute , createRouter } from "rou3" ;
15- import { compileRouter } from "rou3/compiler" ;
16- import { detectTransport } from "./internal/utils" ;
17- import type { OpenAPIV3_1 } from "openapi-types" ;
18- import { buildOpenApiDocs , buildScalarHtml } from "./open-api" ;
19- import { compileRouteHandler } from "./internal/compile-route-handler" ;
20- import { compileFetchFunction } from "./internal/compile-fetch-function" ;
2121
2222let appIdInc = 0 ;
2323const nextAppId = ( ) => `app-${ appIdInc ++ } ` ;
You can’t perform that action at this time.
0 commit comments