UNPKG

n8n-nodes-bizappay

Version:

Unofficial community n8n node for Bizappay API integration - NOT officially endorsed by Bizappay

14 lines (13 loc) 492 B
import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Bizappay implements INodeType { methods: { loadOptions: { getCategories(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; }; description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }