UNPKG

n8n-nodes-text-file-tools

Version:

n8n node for processing text files: remove UTF-8 BOM, convert line endings, and normalize text formats

6 lines (5 loc) 278 B
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class TextFileTools implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }