UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 282 B
import type { Relation } from '@n8n/typeorm'; import { TrustedKeySourceEntity } from './trusted-key-source.entity'; export declare class TrustedKeyEntity { sourceId: string; kid: string; data: string; createdAt: Date; source: Relation<TrustedKeySourceEntity>; }