@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
20 lines (17 loc) • 1.12 kB
text/typescript
import type { DataType } from "node-opcua-variant";
import type { EnumNegotiationStatus } from "./enum_negotiation_status";
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 |IIeeeAutoNegotiationStatusType i=24233 |
* |isAbstract |true |
*/
export interface UAIIeeeAutoNegotiationStatus_Base extends UABaseInterface_Base {
negotiationStatus: UABaseDataVariable<EnumNegotiationStatus, DataType.Int32>;
}
export interface UAIIeeeAutoNegotiationStatus extends UABaseInterface, UAIIeeeAutoNegotiationStatus_Base {}