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

    Interface PlainMonthDay

    interface PlainMonthDay {
        "[toStringTag]": "Temporal.PlainMonthDay";
        calendarId: string;
        day: number;
        monthCode: string;
        equals(other: PlainMonthDayLike): boolean;
        toJSON(): string;
        toLocaleString(
            locales?: LocalesArgument,
            options?: DateTimeFormatOptions,
        ): string;
        toPlainDate(item: PlainMonthDayToPlainDateOptions): Temporal.PlainDate;
        toString(options?: PlainDateToStringOptions): string;
        valueOf(): never;
        with(
            monthDayLike: PartialTemporalLike<DateLikeObject>,
            options?: OverflowOptions,
        ): Temporal.PlainMonthDay;
    }
    Index
    "[toStringTag]": "Temporal.PlainMonthDay"
    calendarId: string
    day: number
    monthCode: string
    • Returns string

    • Parameters

      • Optionallocales: LocalesArgument
      • Optionaloptions: DateTimeFormatOptions

      Returns string

    • Returns never