UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 419 B
import type { WorkflowSettings } from 'n8n-workflow'; import { RedactionConfig } from './redaction.config'; export declare class RedactionEnforcementService { private readonly config; constructor(config: RedactionConfig); isEnforced(): boolean; assertPolicyChangeAllowed(currentPolicy: WorkflowSettings.RedactionPolicy | undefined, incomingPolicy: WorkflowSettings.RedactionPolicy | undefined): void; }