UNPKG

n8n

Version:

n8n Workflow Automation Tool

13 lines (12 loc) 408 B
import { CredentialsEntity, User, WithTimestamps } from '@n8n/db'; import { DynamicCredentialResolver } from './credential-resolver'; export declare class DynamicCredentialUserEntry extends WithTimestamps { constructor(); credentialId: string; userId: string; resolverId: string; data: string; credential: CredentialsEntity; user: User; resolver: DynamicCredentialResolver; }