n8n-nodes-base
Version:
Base nodes of n8n
19 lines • 734 B
TypeScript
import type { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow';
import { getForms } from './GenericFunctions';
export declare class FormstackTrigger implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getForms: typeof getForms;
};
};
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}
//# sourceMappingURL=FormstackTrigger.node.d.ts.map