IHttpResponse
Interface Definition
ts
interface IHttpResponse {
readonly statusCode: number;
readonly body: string;
readonly headers: Record<string, string>;
};