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

    Interface Instant

    interface Instant {
        "[toStringTag]": "Temporal.Instant";
        epochMilliseconds: number;
        epochNanoseconds: bigint;
        add(duration: DurationLike): Temporal.Instant;
        equals(other: InstantLike): boolean;
        round(roundTo: PluralizeUnit<TimeUnit>): Temporal.Instant;
        round(roundTo: RoundingOptions<TimeUnit>): Temporal.Instant;
        since(
            other: InstantLike,
            options?: RoundingOptionsWithLargestUnit<TimeUnit>,
        ): Temporal.Duration;
        subtract(duration: DurationLike): Temporal.Instant;
        toJSON(): string;
        toLocaleString(
            locales?: LocalesArgument,
            options?: DateTimeFormatOptions,
        ): string;
        toString(options?: InstantToStringOptions): string;
        toZonedDateTimeISO(timeZone: TimeZoneLike): Temporal.ZonedDateTime;
        until(
            other: InstantLike,
            options?: RoundingOptionsWithLargestUnit<TimeUnit>,
        ): Temporal.Duration;
        valueOf(): never;
    }
    Index
    "[toStringTag]": "Temporal.Instant"
    epochMilliseconds: number
    epochNanoseconds: bigint
    • Parameters

      Returns boolean

    • Returns string

    • Parameters

      • Optionallocales: LocalesArgument
      • Optionaloptions: DateTimeFormatOptions

      Returns string

    • Returns never