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.d.ts
11 lines
(10 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
abstract
class
BaseEntity
{
id
:
string
;
createdAt
:
Date
;
updatedAt
:
Date
;
active
:
boolean
;
createdBy
?:
string
;
updatedBy
?:
string
;
version
?:
number
;
constructor
(
partial
:
Partial
<
BaseEntity
>
); }