@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (18 loc) • 669 B
TypeScript
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |ServerState |
* | isAbstract|false |
*/
export declare enum EnumServerState {
Running = 0,
Failed = 1,
NoConfiguration = 2,
Suspended = 3,
Shutdown = 4,
Test = 5,
CommunicationFault = 6,
Unknown = 7
}