Make biome happier

This commit is contained in:
2026-01-01 17:22:04 -06:00
parent 20e5da0d54
commit e2ea472a10
5 changed files with 20 additions and 23 deletions

View File

@@ -3,13 +3,13 @@
// FIXME: split this up into types used by app developers and types internal
// to the framework.
import {
Request as ExpressRequest,
type Request as ExpressRequest,
Response as ExpressResponse,
} from "express";
import { MatchFunction } from "path-to-regexp";
import type { MatchFunction } from "path-to-regexp";
import { z } from "zod";
import { ContentType, contentTypes } from "./content-types";
import { HttpCode, httpCodes } from "./http-codes";
import { type ContentType, contentTypes } from "./content-types";
import { type HttpCode, httpCodes } from "./http-codes";
const methodParser = z.union([
z.literal("GET"),