UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

7 lines (6 loc) 281 B
import type { Relation } from '@directus/types'; export type RelationInfo = { relation: Relation | null; relationType: 'o2m' | 'm2o' | 'a2o' | 'o2a' | null; }; export declare function getRelationInfo(relations: Relation[], collection: string, field: string): RelationInfo;