@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (18 loc) • 976 B
TypeScript
import type { UAString } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTRolePermission } from "./dt_role_permission";
import type { DTSubscribedDataSet } from "./dt_subscribed_data_set";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |SubscribedDataSetMirrorDataType |
* | isAbstract|false |
*/
export interface DTSubscribedDataSetMirror extends DTSubscribedDataSet {
parentNodeName: UAString;
rolePermissions: DTRolePermission[];
}
export interface UDTSubscribedDataSetMirror extends ExtensionObject, DTSubscribedDataSetMirror {
}