UNPKG

n8n-nodes-tess-ai-by-pareto

Version:

n8n community node for interacting with the Tess API by Pareto

12 lines (11 loc) 352 B
import { INodeType, INodeTypeDescription, IExecuteFunctions } from 'n8n-workflow'; export declare class TessApi implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<{ json: { resource: string; operation: string; status: string; }; }[][]>; }