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

    Interface Identifiable<TId>

    Base identifiable contract: an id (numeric on Classic, GUID string on Home) and a display name.

    interface Identifiable<TId extends number | string = number> {
        id: TId;
        name: string;
    }

    Type Parameters

    • TId extends number | string = number

      Identifier type; defaults to Classic's numeric ids.

    Hierarchy (View Summary)

    Implemented by

    Index
    id: TId
    name: string