datasquirel/types/general.td.js

12 lines
186 B
JavaScript
Raw Normal View History

2023-09-21 14:00:04 +00:00
const http = require("http");
/**
* @typedef {http.IncomingMessage} Request
*/
/**
* @typedef {http.ServerResponse} Response
*/
module.exports = { Request, Response };