NodeOPCUA API Documentation
    Preparing search index...

    Interface INamespaceDataAccess

    interface INamespaceDataAccess {
        addAnalogDataItem<T, DT extends DataType>(
            options: AddAnalogDataItemOptions,
        ): UAAnalogItemEx<T, DT>;
        addDataItem<T, DT extends DataType>(
            options: AddDataItemOptions,
        ): UADataItem<T, DT>;
        addMultiStateDiscrete<T, DT extends DataType>(
            options: AddMultiStateDiscreteOptions,
        ): UAMultiStateDiscreteEx<T, DT>;
        addMultiStateValueDiscrete<T, DT extends DataType>(
            options: AddMultiStateValueDiscreteOptions,
        ): UAMultiStateValueDiscreteEx<T, DT>;
        addTwoStateDiscrete(
            options: AddTwoStateDiscreteOptions,
        ): UATwoStateDiscreteEx;
        addTwoStateVariable(
            options: AddTwoStateVariableOptions,
        ): UATwoStateVariableEx;
        addYArrayItem<DT extends Float | Double>(
            options: AddYArrayItemOptions,
        ): UAYArrayItemEx<DT>;
    }

    Hierarchy (View Summary)

    Index

    Methods