UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

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>; }