ts-lambda-api - v2.5.2
    Preparing search index...

    Interface HttpResponse

    Represents an HTTP message as received in reply to a request. Contains a numeric status code in addition to standard message properties.

    interface HttpResponse {
        body?: any;
        headers: HeaderBag;
        reason?: string;
        statusCode: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    body?: any
    headers: HeaderBag
    reason?: string
    statusCode: number