UNPKG

@opcua/for-node-red

Version:

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

22 lines (19 loc) 1.13 kB
import type { Byte, UInt16 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { UABaseDataVariable } from "./ua_base_data_variable"; import type { UABaseInterface, UABaseInterface_Base } from "./ua_base_interface"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |ISrClassType i=24169 | * |isAbstract |true | */ export interface UAISrClass_Base extends UABaseInterface_Base { id: UABaseDataVariable<Byte, DataType.Byte>; priority: UABaseDataVariable<Byte, DataType.Byte>; vid: UABaseDataVariable<UInt16, DataType.UInt16>; } export interface UAISrClass extends UABaseInterface, UAISrClass_Base {}