UNPKG

n8n

Version:

n8n Workflow Automation Tool

8 lines (7 loc) 326 B
import { Request } from 'express'; import { WebhookService } from './webhook.service'; export declare class WebhooksController { private readonly webhookService; constructor(webhookService: WebhookService); findWebhook(req: Request): Promise<import("../databases/entities/webhook-entity").WebhookEntity | null>; }