import { HonoBase } from "https://deno.land/x/hono@v3.7.1/hono-base.ts";
Properties
private
errorHandler: ErrorHandlerprivate
notFoundHandler: NotFoundHandlerdeprecated
handleEvent: (event: FetchEventLike) => unknownrequest: () => unknown
input: RequestInfo | URL,
requestInit?: RequestInit,
Env?: E["Bindings"] | { },
executionCtx?: ExecutionContext,
Methods
private
dispatch(request: Request,
executionCtx: ExecutionContext | FetchEventLike | undefined,
env: E["Bindings"],
method: string,
private
handleError(err: unknown, c: Context<E>)private
matchRoute(method: string, path: string)notFound(handler: NotFoundHandler<E>)
onError(handler: ErrorHandler<E>)
route<SubPath extends string>(path: SubPath): Hono<E, RemoveBlankRecord<S>, BasePath>