UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 648 B
import { ContextEstablishmentOptions, ContextEstablishmentResult, HookDescription, IContextEstablishmentHook } from '@n8n/decorators'; import { InstanceRedactionEnforcementService } from './instance-redaction-enforcement.service'; export declare class RedactionContextHook implements IContextEstablishmentHook { private readonly instanceRedactionEnforcementService; constructor(instanceRedactionEnforcementService: InstanceRedactionEnforcementService); hookDescription: HookDescription; isApplicableToTriggerNode(_nodeType: string): boolean; execute(options: ContextEstablishmentOptions): Promise<ContextEstablishmentResult>; }