UNPKG

n8n

Version:

n8n Workflow Automation Tool

19 lines (18 loc) 653 B
import { type Config } from '@oclif/core'; import { WebhookServer } from '../webhooks/WebhookServer'; import { BaseCommand } from './BaseCommand'; export declare class Webhook extends BaseCommand { static description: string; static examples: string[]; static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag<void>; }; protected server: WebhookServer; needsCommunityPackages: boolean; constructor(argv: string[], cmdConfig: Config); stopProcess(): Promise<void>; init(): Promise<void>; run(): Promise<void>; catch(error: Error): Promise<void>; initOrchestration(): Promise<void>; }