File size: 439 Bytes
fea495a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type { ServerResponse } from 'http';
export declare const middlewareResponse: {
    noContent(res: ServerResponse): void;
    badRequest(res: ServerResponse): void;
    notFound(res: ServerResponse): void;
    methodNotAllowed(res: ServerResponse): void;
    internalServerError(res: ServerResponse, error?: unknown): void;
    json(res: ServerResponse, data: any): void;
    jsonString(res: ServerResponse, data: string): void;
};