UNPKG

@smallprod/models

Version:
10 lines (9 loc) 230 B
export type RelationshipType = 'manytomany' | 'manytoone' | 'onetomany'; export interface Relationship { entity: any; type: RelationshipType; data: any; fieldName: string; autoFetch: boolean; relationTable?: string; }