n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 349 B
TypeScript
import { type CredentialsEntity, WithCreatedAt } from '@n8n/db';
import { type Relation } from '@n8n/typeorm';
import type { Agent } from './agent.entity';
export declare class AgentCredentialDependency extends WithCreatedAt {
agentId: string;
agent: Relation<Agent>;
credentialId: string;
credential: Relation<CredentialsEntity>;
}