UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

19 lines 857 B
import type { IHookFunctions, IWebhookFunctions, ILoadOptionsFunctions, INodePropertyOptions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; export declare class NetlifyTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise<boolean>; create(this: IHookFunctions): Promise<boolean>; delete(this: IHookFunctions): Promise<boolean>; }; }; methods: { loadOptions: { getSites(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getForms(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>; } //# sourceMappingURL=NetlifyTrigger.node.d.ts.map