UNPKG

@zandor300/jsmodbus

Version:

Implementation for the Serial/TCP Modbus protocol.

12 lines (11 loc) 333 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ModbusAbstractResponse { get body() { return this._body; } static fromRequest(request, body) { throw new TypeError('Cannot call fromRequest directly from abstract class'); } } exports.default = ModbusAbstractResponse;