@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (22 loc) • 698 B
TypeScript
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |Duplex |
* | isAbstract|false |
*/
export declare enum EnumDuplex {
/**
* Full duplex.
*/
Full = 0,
/**
* Half duplex.
*/
Half = 1,
/**
* Link is currently disconnected or initializing.
*/
Unknown = 2
}