UNPKG
@themost/jspa
Version:
latest (2.0.0)
2.0.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
MOST Web Framework Persistence API
github.com/themost-framework/jspa
themost-framework/jspa
@themost/jspa
/
dist
/
JoinColumn.d.ts
13 lines
(12 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
declare
interface
JoinColumnAnnotation
{
foreignKey
?:
string
;
insertable
?:
boolean
;
name
?:
string
;
nullable
?:
boolean
;
referencedColumnName
:
string
;
table
?:
string
;
unique
?:
boolean
;
updatable
?:
boolean
;
type
?:
string
; }
export
{
JoinColumnAnnotation
};