UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

18 lines 736 B
import type { IHookFunctions, IWebhookFunctions, ILoadOptionsFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; export declare class LemlistTrigger implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getCampaigns(this: ILoadOptionsFunctions): Promise<any>; }; }; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise<boolean>; create(this: IHookFunctions): Promise<boolean>; delete(this: IHookFunctions): Promise<boolean>; }; }; webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>; } //# sourceMappingURL=LemlistTrigger.node.d.ts.map