UNPKG
@fabianvolkers/n8n-nodes-modbus-trigger
Version:
latest (0.2.5)
0.2.5
n8n node to trigger Modbus Address on change
github.com/lostedz/n8n-modbus
lostedz/n8n-modbus
@fabianvolkers/n8n-nodes-modbus-trigger
/
dist
/
nodes
/
Modbus
/
Modbus.node.d.ts
6 lines
(5 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
INodeType
,
INodeTypeDescription
,
IExecuteFunctions
,
INodeExecutionData
}
from
'n8n-workflow'
;
export
declare
class
Modbus
implements
INodeType
{
description
:
INodeTypeDescription
;
execute
(
this
:
IExecuteFunctions
):
Promise
<
INodeExecutionData
[][]>; }