UNPKG
bb-inspired
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Core library for BB-inspired NestJS backend
bb-inspired
/
dist
/
common
/
base.entity.js
11 lines
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
BaseEntity
=
void
0
;
class
BaseEntity
{
constructor
(
partial
) {
this
.
active
=
true
;
Object
.
assign
(
this
, partial); } }
exports
.
BaseEntity
=
BaseEntity
;
//# sourceMappingURL=base.entity.js.map