From 766fd0b51768e3c32810d54f88f2e2937cfd3494 Mon Sep 17 00:00:00 2001 From: Flummi Date: Tue, 25 Mar 2025 13:57:07 +0100 Subject: [PATCH] . --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index f2884a8..0985ccd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -133,7 +133,7 @@ export default class Flummpress { return res.writeHead(code); }; - res.json = (body: JSON, code = 200) => { + res.json = (body: any, code = 200) => { res.reply({ code, type: "application/json", body: JSON.stringify(body) }); };