UNPKG

n8n

Version:

n8n Workflow Automation Tool

4 lines (3 loc) 278 B
import type { IWebhookDescription } from 'n8n-workflow'; export type ExpectedWebhookNodeType = NonNullable<IWebhookDescription['nodeType']>; export declare function matchesExpectedNodeType(expected: ExpectedWebhookNodeType, declared?: IWebhookDescription['nodeType']): boolean;