UNPKG

@mineru98/n8n-ko

Version:

n8n Workflow Automation Tool - Korean Version

16 lines (15 loc) 510 B
import { NotFoundError } from './not-found.error'; export declare const webhookNotFoundErrorMessage: ({ path, httpMethod, webhookMethods, }: { path: string; httpMethod?: string; webhookMethods?: string[]; }) => string; export declare class WebhookNotFoundError extends NotFoundError { constructor({ path, httpMethod, webhookMethods, }: { path: string; httpMethod?: string; webhookMethods?: string[]; }, { hint }?: { hint: 'default' | 'production'; }); }