tiny-essentials
Version:
Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.
9 lines • 438 B
text/typescript
export default http_base;
declare namespace http_base {
let list: {
[x: number]: string;
};
function send(res: import("express").Response, http_code: number, callback?: (arg0: number) => import("express").Response): import("express").Response;
function sendAsync(res: import("express").Response, http_code: number, callback?: (arg0: number) => Promise<any>): Promise<any>;
}
//# sourceMappingURL=HTTP-1.0.d.mts.map