feat: update json method in Response interface to accept any type

This commit is contained in:
Flummi 2025-03-20 11:56:11 +01:00
parent bc79a439cd
commit 5c8a4c1edc
3 changed files with 3 additions and 3 deletions

2
dist/router.d.ts vendored
View File

@ -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;
}

View File

@ -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) });
};

View File

@ -19,7 +19,7 @@ export interface Request extends Omit<IncomingMessage, 'url'> {
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;
}