UNPKG

n8n-nodes-doc-to-text

Version:

Custom n8n node to convert .doc files to text using mammoth

17 lines (16 loc) 515 B
import { INodeType, INodeTypeDescription, IExecuteFunctions } from 'n8n-workflow'; declare module 'n8n-workflow' { interface IExecuteItem { binary?: { [key: string]: { data: string; mimeType?: string; fileName?: string; }; }; } } export declare class DocToText implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>; }