n8n
Version:
n8n Workflow Automation Tool
14 lines (13 loc) • 364 B
TypeScript
import { IHttpRequestMethods } from 'n8n-workflow';
export declare class WebhookEntity {
workflowId: string;
webhookPath: string;
method: IHttpRequestMethods;
node: string;
webhookId?: string;
pathLength?: number;
private get uniquePath();
get cacheKey(): string;
get staticSegments(): string[];
get isDynamic(): boolean;
}