MELCloud & MELCloud Home API for Node.js - v48.2.0
    Preparing search index...

    Interface HttpResponse<T>

    Minimal response shape surfaced to callers.

    interface HttpResponse<T = unknown> {
        data: T;
        headers: Record<string, string | string[]>;
        status: number;
    }

    Type Parameters

    • T = unknown

      Type of the parsed body exposed as data, chosen by the caller of HttpClient.request.

    Index
    data: T
    headers: Record<string, string | string[]>
    status: number