UNPKG
n8n-nodes-text-splitter-chunker
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
n8n node to split text into chunks.
n8n-nodes-text-splitter-chunker
/
dist
/
TextSplitterChunker.node.d.ts
6 lines
(5 loc)
•
279 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
IExecuteFunctions
,
INodeExecutionData
,
INodeType
,
INodeTypeDescription
}
from
'n8n-workflow'
;
export
declare
class
TextSplitterChunker
implements
INodeType
{
description
:
INodeTypeDescription
;
execute
(
this
:
IExecuteFunctions
):
Promise
<
INodeExecutionData
[][]>; }