diff --git a/packages/fresh/src/context.ts b/packages/fresh/src/context.ts index 3e1e59c164d..abc94082a63 100644 --- a/packages/fresh/src/context.ts +++ b/packages/fresh/src/context.ts @@ -83,7 +83,7 @@ export class Context { data: unknown = undefined; /** Error value if an error was caught (Default: null) */ error: unknown | null = null; - readonly info: Deno.ServeHandlerInfo | Deno.ServeHandlerInfo; + readonly info: Deno.ServeHandlerInfo; /** * Whether the current Request is a partial request. * diff --git a/packages/fresh/src/fs_routes.ts b/packages/fresh/src/fs_routes.ts index b10cc58d584..6d86eca50a6 100644 --- a/packages/fresh/src/fs_routes.ts +++ b/packages/fresh/src/fs_routes.ts @@ -2,9 +2,8 @@ import type { AnyComponent } from "preact"; import type { MaybeLazy, Route, RouteConfig } from "./types.ts"; import type { HandlerByMethod, RouteHandler } from "./handlers.ts"; import type { Middleware } from "./middlewares/mod.ts"; -import type { AsyncAnyComponent } from "./render.ts"; +import type { AsyncAnyComponent, PageProps } from "./render.ts"; import { type HandlerFn, isHandlerByMethod } from "./handlers.ts"; -import type { PageProps } from "./render.ts"; import { type Command, CommandType, diff --git a/packages/fresh/src/jsonify/stringify.ts b/packages/fresh/src/jsonify/stringify.ts index 05bb77cc78b..1179b5a3cde 100644 --- a/packages/fresh/src/jsonify/stringify.ts +++ b/packages/fresh/src/jsonify/stringify.ts @@ -1,4 +1,5 @@ import { + HOLE, INFINITY_NEG, INFINITY_POS, NAN, @@ -6,7 +7,6 @@ import { UNDEFINED, ZERO_NEG, } from "./constants.ts"; -import { HOLE } from "./constants.ts"; export type Stringifiers = Record< string, diff --git a/packages/fresh/src/router.ts b/packages/fresh/src/router.ts index 87ca99ebcb7..b731f7b9ce2 100644 --- a/packages/fresh/src/router.ts +++ b/packages/fresh/src/router.ts @@ -42,7 +42,7 @@ export interface RouteResult { export interface Router { add( - method: Method | "OPTIONS" | "ALL", + method: Method | "ALL", pathname: string, handlers: T[], ): void;