datasquirel/types/general.td.js

12 lines
175 B
JavaScript
Raw Normal View History

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