import { ExtensionObject } from "node-opcua-extension-object"; import { DTSubscribedDataSet } from "./dt_subscribed_data_set"; import { DTFieldTarget } from "./dt_field_target"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |TargetVariablesDataType | * | isAbstract|false | */ export interface DTTargetVariables extends DTSubscribedDataSet { targetVariables: DTFieldTarget[]; } export interface UDTTargetVariables extends ExtensionObject, DTTargetVariables { }