UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

27 lines (26 loc) 761 B
/** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |PerformUpdateType | * | isAbstract|false | */ export declare enum EnumPerformUpdate { /** * Data was inserted. */ Insert = 1, /** * Data was replaced. */ Replace = 2, /** * Data was inserted or replaced. */ Update = 3, /** * Data was deleted. */ Remove = 4 }