summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/utils/body.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/testdata/npm/hono/dist/utils/body.d.ts')
-rw-r--r--cli/bench/testdata/npm/hono/dist/utils/body.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/bench/testdata/npm/hono/dist/utils/body.d.ts b/cli/bench/testdata/npm/hono/dist/utils/body.d.ts
new file mode 100644
index 000000000..87407539c
--- /dev/null
+++ b/cli/bench/testdata/npm/hono/dist/utils/body.d.ts
@@ -0,0 +1,2 @@
+export declare type Body = string | object | Record<string, string | File> | ArrayBuffer;
+export declare const parseBody: (r: Request | Response) => Promise<Body>;