UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

16 lines 666 B
import type { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; export declare class OnfleetTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise<boolean>; create(this: IHookFunctions): Promise<boolean>; delete(this: IHookFunctions): Promise<boolean>; }; }; /** * Triggered function when an Onfleet webhook is executed */ webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>; } //# sourceMappingURL=OnfleetTrigger.node.d.ts.map