UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

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