1 2 3 4 5 6 7 8 9 10
/// <reference path="request.d.ts" /> import { Hono } from './hono'; export type { Handler, Next } from './hono'; export type { Context } from './context'; declare module './hono' { interface Hono { fire(): void; } } export { Hono };