n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 472 B
TypeScript
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>;
}