Type alias HttpApiResponse<Body>

HttpApiResponse<Body>: {
    body: Body;
    headers: Record<string, string>;
    statusCode: number;
}

Type Parameters

  • Body = unknown

Type declaration

  • body: Body
  • headers: Record<string, string>
  • statusCode: number

Generated using TypeDoc