feat: update json method in Response interface to accept any type
This commit is contained in:
parent
bc79a439cd
commit
5c8a4c1edc
2
dist/router.d.ts
vendored
2
dist/router.d.ts
vendored
@ -18,7 +18,7 @@ export interface Response extends ServerResponse {
|
|||||||
body: string;
|
body: string;
|
||||||
}) => void;
|
}) => void;
|
||||||
status: (code: number) => Response;
|
status: (code: number) => Response;
|
||||||
json: (body: JSON, code?: number) => void;
|
json: (body: any, code?: number) => void;
|
||||||
html: (body: string, code?: number) => void;
|
html: (body: string, code?: number) => void;
|
||||||
redirect: (target: string, code?: number) => void;
|
redirect: (target: string, code?: number) => void;
|
||||||
}
|
}
|
||||||
|
@ -191,7 +191,7 @@ export default class Flummpress {
|
|||||||
return res.writeHead(code);
|
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) });
|
res.reply({ code, type: "application/json", body: JSON.stringify(body) });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ export interface Request extends Omit<IncomingMessage, 'url'> {
|
|||||||
export interface Response extends ServerResponse {
|
export interface Response extends ServerResponse {
|
||||||
reply: (options: { code?: number; type?: string; body: string }) => void;
|
reply: (options: { code?: number; type?: string; body: string }) => void;
|
||||||
status: (code: number) => Response;
|
status: (code: number) => Response;
|
||||||
json: (body: JSON, code?: number) => void;
|
json: (body: any, code?: number) => void;
|
||||||
html: (body: string, code?: number) => void;
|
html: (body: string, code?: number) => void;
|
||||||
redirect: (target: string, code?: number) => void;
|
redirect: (target: string, code?: number) => void;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user