UNPKG

@robotical/ricjs

Version:

Javascript/TS library for Robotical RIC

27 lines 884 B
"use strict"; ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // RICJS // Communications Library // // Rob Dobson & Chris Greening 2020-2022 // (C) 2020-2022 // ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// Object.defineProperty(exports, "__esModule", { value: true }); class RICAddOnBase { constructor(name, typeName, whoAmI, whoAmITypeCode) { this._name = ''; this._typeName = ''; this._whoAmI = ""; this._whoAmITypeCode = ""; this._isStatic = false; this._initCmd = null; this._name = name; this._typeName = typeName; this._whoAmI = whoAmI; this._whoAmITypeCode = whoAmITypeCode; } } exports.default = RICAddOnBase; //# sourceMappingURL=RICAddOnBase.js.map