import { UAObject, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UInt32 } from "node-opcua-basic-types"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |TransitionType i=2310 | * |isAbstract |false | */ export interface UATransition_Base { transitionNumber: UAProperty; } export interface UATransition extends UAObject, UATransition_Base { }