import { UAObject, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UASubscribedDataSet } from "./ua_subscribed_data_set"; import { DTDataSetMeta } from "./dt_data_set_meta"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |StandaloneSubscribedDataSetType i=23828 | * |isAbstract |false | */ export interface UAStandaloneSubscribedDataSet_Base { subscribedDataSet: UASubscribedDataSet; dataSetMetaData: UAProperty; isConnected: UAProperty; } export interface UAStandaloneSubscribedDataSet extends UAObject, UAStandaloneSubscribedDataSet_Base { }