UNPKG
ionic-orm-x
Version:
latest (0.0.8)
0.0.8
0.0.7
Data-mapper ORM for Ionic WebSQL and SQLite
github.com/jeansantana/ionic-orm
jeansantana/ionic-orm
ionic-orm-x
/
src
/
decorator
/
options
/
JoinColumnOptions.d.ts
14 lines
(13 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * Describes column options. */
export
interface
JoinColumnOptions
{
/** * Name of the column. */
readonly
name?:
string
;
/** * Name of the column in the entity to which this column is referenced. */
readonly
referencedColumnName?:
string
; }