File tree Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,21 @@ function makePropertyDecorator(typeFunction) {
59
59
60
60
// columns
61
61
62
- /* export */
63
- function Column ( typeOrOptions , options ) {
62
+ /* export */ function Column ( typeOrOptions , options ) {
64
63
return makePropertyDecorator ( typeOrOptions ) ;
65
64
}
66
65
exports . Column = Column ;
67
66
67
+ /* export */ function ViewColumn ( typeOrOptions , options ) {
68
+ return makePropertyDecorator ( typeOrOptions ) ;
69
+ }
70
+ exports . ViewColumn = ViewColumn ;
71
+
72
+ /* export */ function DeleteDateColumn ( options ) {
73
+ return function ( object , propertyName ) { } ;
74
+ }
75
+ exports . DeleteDateColumn = DeleteDateColumn ;
76
+
68
77
/* export */ function CreateDateColumn ( options ) {
69
78
return function ( object , propertyName ) { } ;
70
79
}
@@ -192,6 +201,11 @@ exports.ChildEntity = ChildEntity;
192
201
}
193
202
exports . Entity = Entity ;
194
203
204
+ /* export */ function ViewEntity ( options ) {
205
+ return function ( object ) { } ;
206
+ }
207
+ exports . ViewEntity = ViewEntity ;
208
+
195
209
/* export */ function TableInheritance ( type ) {
196
210
return function ( object ) { } ;
197
211
}
Original file line number Diff line number Diff line change 29
29
}
30
30
exports . Column = Column ;
31
31
32
+ /* export */ function ViewColumn ( typeOrOptions , options ) {
33
+ return function ( object , propertyName ) {
34
+ } ;
35
+ }
36
+ exports . ViewColumn = ViewColumn ;
37
+
38
+ /* export */ function DeleteDateColumn ( options ) {
39
+ return function ( object , propertyName ) {
40
+ } ;
41
+ }
42
+ exports . DeleteDateColumn = DeleteDateColumn ;
43
+
32
44
/* export */ function CreateDateColumn ( options ) {
33
45
return function ( object , propertyName ) {
34
46
} ;
@@ -79,6 +91,12 @@ exports.ChildEntity = ChildEntity;
79
91
}
80
92
exports . Entity = Entity ;
81
93
94
+ /* export */ function ViewEntity ( name , options ) {
95
+ return function ( object ) {
96
+ } ;
97
+ }
98
+ exports . ViewEntity = ViewEntity ;
99
+
82
100
/* export */ function TableInheritance ( type ) {
83
101
return function ( object ) {
84
102
} ;
You can’t perform that action at this time.
0 commit comments