UNPKG

n8n-nodes-json-to-pdf

Version:

Convert Markdown/JSON into PDF (single document or e-book) for n8n

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