fantasia-archive/src/interfaces/I_FieldRelationship.ts

30 lines
481 B
TypeScript
Raw Normal View History

2021-01-31 02:43:13 +13:00
export interface I_FieldRelationship{
type: string
label: string
value: string
url: string
_id: string
pairedField: string
2021-02-21 01:06:21 +13:00
isCategory: boolean
isDead: boolean
isAutoGenerated?: boolean
2021-01-31 02:43:13 +13:00
}
2021-02-09 15:21:48 +13:00
export interface I_RelationshipPair {
addedValues: {
pairedId: string,
value: string
}[]
value: I_FieldRelationship[],
}
export interface I_RelationshipPairSingle {
addedValues: {
pairedId: string,
value: string
}
value: I_FieldRelationship,
}