1234567891011121314151617 |
- import type { NodeId } from "./NodeId";
- import { UABaseNode } from "./UABaseNode";
- import { UAReference } from "./UAReference";
- export class UAVariable extends UABaseNode {
- constructor(public nodeId: NodeId,
- public browseName: string,
- public displayName: string,
- public references: UAReference[]) {
- super(nodeId, browseName, displayName, references);
- }
- static parse(uaObject: any): UAVariable{
- const bn=super.parse(uaObject)
- return new UAVariable(bn.nodeId, bn.browseName, bn.displayName, bn.references);
- }
- }
|