node-opcua-client
Version:
pure nodejs OPCUA SDK - module client
15 lines • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OPCUAClientBase = void 0;
const node_opcua_object_registry_1 = require("node-opcua-object-registry");
class OPCUAClientBase {
static registry = new node_opcua_object_registry_1.ObjectRegistry();
static retryDelay = 1000 * 5;
static create(options) {
/* istanbul ignore next*/
options;
throw new Error("Not Implemented");
}
}
exports.OPCUAClientBase = OPCUAClientBase;
//# sourceMappingURL=client_base.js.map