@vwork-digital/n8n-nodes-fillout
Version:
N8N nodes for Fillout forms - includes both trigger and action nodes.
21 lines (20 loc) • 753 B
TypeScript
import { IHookFunctions, IWebhookFunctions, ILoadOptionsFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow';
export declare class FilloutTrigger implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getForms(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}