Skip to content

Commit 8dea6b5

Browse files
author
Anna Bocharova
committed
CR: rm import extensions.
1 parent 514e906 commit 8dea6b5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

express-zod-api/src/endpoint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { DiscriminatedResult, pullResponseExamples } from "./result-helpers";
3030
import { AbstractResultHandler } from "./result-handler";
3131
import { Security } from "./security";
3232
import { ezUploadBrand } from "./upload-schema";
33-
import type { Routing } from "./routing.ts";
33+
import type { Routing } from "./routing";
3434

3535
export type Handler<IN, OUT, CTX> = (params: {
3636
/** @desc The inputs from the enabled input sources validated against the final input schema (incl. Middlewares) */

express-zod-api/src/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { zodToTs } from "./zts";
2323
import { ZTSContext } from "./zts-helpers";
2424
import type Prettier from "prettier";
2525
import { ClientMethod } from "./method";
26-
import type { CommonConfig } from "./config-type.ts";
26+
import type { CommonConfig } from "./config-type";
2727

2828
interface IntegrationParams {
2929
routing: Routing;

express-zod-api/src/routing-walker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { RoutingError } from "./errors";
33
import { ClientMethod, isMethod, Method } from "./method";
44
import { Routing } from "./routing";
55
import { ServeStatic, StaticHandler } from "./serve-static";
6-
import type { CommonConfig } from "./config-type.ts";
6+
import type { CommonConfig } from "./config-type";
77

88
export type OnEndpoint<M extends string = Method> = (
99
method: M,

0 commit comments

Comments
 (0)