summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/testdata/npm/hono/dist/index.d.ts')
-rw-r--r--cli/bench/testdata/npm/hono/dist/index.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/bench/testdata/npm/hono/dist/index.d.ts b/cli/bench/testdata/npm/hono/dist/index.d.ts
new file mode 100644
index 000000000..92c9f1881
--- /dev/null
+++ b/cli/bench/testdata/npm/hono/dist/index.d.ts
@@ -0,0 +1,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 };