UNPKG
n8n-nodes-smb2
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.1.0
Transfer files via Samba (SMB2) with n8n
github.com/drudge/n8n-nodes-smb2
drudge/n8n-nodes-smb2
n8n-nodes-smb2
/
dist
/
nodes
/
Smb2
/
Smb2.node.d.ts
6 lines
(5 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
type
IExecuteFunctions
,
type
INodeExecutionData
,
type
INodeType
,
type
INodeTypeDescription
}
from
'n8n-workflow'
;
export
declare
class
Smb2
implements
INodeType
{
description
:
INodeTypeDescription
;
execute
(
this
:
IExecuteFunctions
):
Promise
<
INodeExecutionData
[][]>; }