@vwork-digital/n8n-nodes-fillout
Version:
N8N nodes for Fillout forms - includes both trigger and action nodes.
18 lines (17 loc) • 632 B
TypeScript
import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Fillout implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getForms(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getSubmissions(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}