UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 400 B
import { WebhookServer } from '../webhooks/webhook-server'; import { BaseCommand } from './base-command'; export declare class Webhook extends BaseCommand { protected server: WebhookServer; needsCommunityPackages: boolean; stopProcess(): Promise<void>; init(): Promise<void>; run(): Promise<void>; catch(error: Error): Promise<void>; initOrchestration(): Promise<void>; }