@fiqch/n8n-nodes-fiq-opcua
Version:
n8n custom node for reading and writing OPC UA data (FactoryIQ)
14 lines (13 loc) • 625 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, INodeCredentialTestResult, ICredentialTestFunctions } from 'n8n-workflow';
export declare class FactoryiqOpcUa implements INodeType {
description: INodeTypeDescription;
methods: {
credentialTest: {
opcuaConnectionTest(this: ICredentialTestFunctions, credential: any): Promise<INodeCredentialTestResult>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
private static getDataTypeEnum;
private static convertValueToDataType;
private static opcuaDataTypeMap;
}