From 5c8a4c1edc3236788bba4dd17e8018e3bf5549f3 Mon Sep 17 00:00:00 2001 From: Flummi Date: Thu, 20 Mar 2025 11:56:11 +0100 Subject: [PATCH] feat: update json method in Response interface to accept any type --- dist/router.d.ts | 2 +- src/index.ts | 2 +- src/router.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/router.d.ts b/dist/router.d.ts index 784568f..b99dbbf 100644 --- a/dist/router.d.ts +++ b/dist/router.d.ts @@ -18,7 +18,7 @@ export interface Response extends ServerResponse { body: string; }) => void; status: (code: number) => Response; - json: (body: JSON, code?: number) => void; + json: (body: any, code?: number) => void; html: (body: string, code?: number) => void; redirect: (target: string, code?: number) => void; } diff --git a/src/index.ts b/src/index.ts index 5eb7db5..b9e99d1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -191,7 +191,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) }); }; diff --git a/src/router.ts b/src/router.ts index adaa813..fe9dfb3 100644 --- a/src/router.ts +++ b/src/router.ts @@ -19,7 +19,7 @@ export interface Request extends Omit { export interface Response extends ServerResponse { reply: (options: { code?: number; type?: string; body: string }) => void; status: (code: number) => Response; - json: (body: JSON, code?: number) => void; + json: (body: any, code?: number) => void; html: (body: string, code?: number) => void; redirect: (target: string, code?: number) => void; }