summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/index.d.ts
blob: 92c9f1881e060572785e3c3569899094dc08456d (plain)
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 };