Skip to content

Commit 21f9859

Browse files
committed
chore: Sort imports
1 parent 8572374 commit 21f9859

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

src/app.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
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";
18
import 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

2222
let appIdInc = 0;
2323
const nextAppId = () => `app-${appIdInc++}`;

0 commit comments

Comments
 (0)