UNPKG

n8n

Version:

n8n Workflow Automation Tool

8 lines (7 loc) 306 B
import type { LICENSE_FEATURES } from '@n8n/constants'; import { UserError } from 'n8n-workflow'; export declare class FeatureNotLicensedError extends UserError { constructor(feature: (typeof LICENSE_FEATURES)[keyof typeof LICENSE_FEATURES], opts?: { extra?: Record<string, unknown>; }); }