n8n-nodes-pdforge
Version:
Pdforge Automate PDF Generation in minutes using AI.Create custom PDF templates in seconds using our AI Agents, fine tune the design with our no-code builder and automate the PDF delivery with our native pdforge node inside n8n. No code or design experien
11 lines (10 loc) • 456 B
TypeScript
import { ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription, IExecuteFunctions } from 'n8n-workflow';
export declare class Pdforge implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getTemplates(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}