@shetty4l/core 0.1.36 → 0.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/state/index.ts +7 -1
package/package.json
CHANGED
package/src/state/index.ts
CHANGED
|
@@ -65,8 +65,14 @@ export { Field, Persisted } from "./decorators";
|
|
|
65
65
|
|
|
66
66
|
/** Mark a class as a persisted collection (multi-row table). */
|
|
67
67
|
/** Mark a property as the primary key field. */
|
|
68
|
+
/** Mark a property as a persisted field in a collection (use with @PersistedCollection). */
|
|
68
69
|
/** Mark column(s) for indexing. */
|
|
69
|
-
export {
|
|
70
|
+
export {
|
|
71
|
+
Field as CollectionField,
|
|
72
|
+
Id,
|
|
73
|
+
Index,
|
|
74
|
+
PersistedCollection,
|
|
75
|
+
} from "./collection/decorators";
|
|
70
76
|
|
|
71
77
|
// --------------------------------------------------------------------------
|
|
72
78
|
// Collection base class
|