UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

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; }