UNPKG
bento-n8n-sdk
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
n8n community node for Bento integration
bentonow.com
bentonow/bento-n8n-sdk
bento-n8n-sdk
/
dist
/
nodes
/
ExampleNode
/
ExampleNode.node.d.ts
6 lines
(5 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
IExecuteFunctions
,
INodeExecutionData
,
INodeType
,
INodeTypeDescription
}
from
'n8n-workflow'
;
export
declare
class
ExampleNode
implements
INodeType
{
description
:
INodeTypeDescription
;
execute
(
this
:
IExecuteFunctions
):
Promise
<
INodeExecutionData
[][]>; }