Type Alias: OneOptions<T>
OneOptions<
T
>: {foreignKey
: keyofT
|string
| readonly (keyofT
|string
)[];nullable
:boolean
; }
Options for reference navigation properties.
Type Parameters
Type Parameter |
---|
T extends object |
Type declaration
foreignKey?
optional
foreignKey: keyofT
|string
| readonly (keyofT
|string
)[]
The foreign key properties that reference the target entity.
nullable?
optional
nullable:boolean
The nullability of the property.