UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 385 B
import { CredentialsEntity, WithTimestamps } from '@n8n/db'; import { DynamicCredentialResolver } from './credential-resolver'; export declare class DynamicCredentialEntry extends WithTimestamps { constructor(); credentialId: string; subjectId: string; resolverId: string; data: string; credential: CredentialsEntity; resolver: DynamicCredentialResolver; }