@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines • 1.01 kB
JavaScript
;
// ----- this file has been automatically generated - do not edit
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnumActionState = void 0;
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |ActionState |
* | isAbstract|false |
*/
var EnumActionState;
(function (EnumActionState) {
EnumActionState[EnumActionState["Idle"] = 0] = "Idle";
EnumActionState[EnumActionState["Executing"] = 1] = "Executing";
EnumActionState[EnumActionState["Done"] = 2] = "Done";
})(EnumActionState || (exports.EnumActionState = EnumActionState = {}));
//# sourceMappingURL=enum_action_state.js.map