n8n
Version:
n8n Workflow Automation Tool
12 lines (11 loc) • 354 B
TypeScript
import { WithTimestampsAndStringId } from '@n8n/db';
import { type Relation } from '@n8n/typeorm';
import { Agent } from './agent.entity';
export declare class AgentFile extends WithTimestampsAndStringId {
agent: Relation<Agent>;
agentId: string;
binaryDataId: string;
fileName: string;
mimeType: string;
fileSizeBytes: number;
}