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

    Type Alias Resolved<T>

    Resolved: { [K in keyof T]-?: Exclude<T[K], undefined> }

    Fully-resolved counterpart of an undefined-tolerant input shape: every property present and defined (defaults applied). Under exactOptionalPropertyTypes, Required<T> removes ? but keeps an explicit | undefined in the property type; this also strips it. null is preserved — in this domain it is a sentinel, not an absence marker.

    Type Parameters

    • T

      Input shape whose optional properties admit undefined.