import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { LocalizedText } from "node-opcua-data-model"; import { UAStateVariable, UAStateVariable_Base } from "./ua_state_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |TwoStateVariableType i=8995 | * |dataType |LocalizedText | * |dataType Name |LocalizedText i=21 | * |value rank |-1 | * |isAbstract |false | */ export interface UATwoStateVariable_Base extends UAStateVariable_Base { id: UAProperty; transitionTime?: UAProperty; effectiveTransitionTime?: UAProperty; trueState?: UAProperty; falseState?: UAProperty; } export interface UATwoStateVariable extends Omit, "id">, UATwoStateVariable_Base { }