UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

9 lines (8 loc) 472 B
import { Cipher } from 'n8n-core'; import type { IDataObject, IRunExecutionData } from 'n8n-workflow'; import { RuntimeCredentialProvider } from '../../services/runtime-credential-proxy.service'; export declare class RuntimeCredentialsAccessService implements RuntimeCredentialProvider { private readonly cipher; constructor(cipher: Cipher); getRuntimeCredential(runExecutionData: IRunExecutionData, alias: string): Promise<IDataObject[string] | undefined>; }