UNPKG

n8n

Version:

n8n Workflow Automation Tool

8 lines (7 loc) 517 B
import { WebhookHttpMethod } from 'n8n-workflow'; import * as express from 'express'; import { IExecutionResponse, IResponseCallbackData } from '.'; export declare class WaitingWebhooks { executeWebhook(httpMethod: WebhookHttpMethod, fullPath: string, req: express.Request, res: express.Response): Promise<IResponseCallbackData>; startExecution(httpMethod: WebhookHttpMethod, path: string, fullExecutionData: IExecutionResponse, req: express.Request, res: express.Response): Promise<IResponseCallbackData>; }