UNPKG
monguito
Version:
latest (6.1.3)
6.1.3
6.1.2
6.0.2
6.0.1
6.0.0
5.1.2
5.1.1
5.1.0
5.0.1
5.0.0
4.8.0
4.7.0
4.6.1
4.6.0
4.5.0
4.4.1
4.4.0
4.3.0
4.2.0
4.1.1
4.1.0
4.0.0
3.4.1
3.4.0
3.3.1
3.3.0
3.2.0
3.1.0
3.0.0
2.14.0
2.13.0
2.12.0
2.11.0
2.10.1
2.10.0
MongoDB Abstract Repository implementation for Node.js
github.com/josuto/monguito
josuto/monguito
monguito
/
dist
/
util
/
entity.d.ts
7 lines
(6 loc)
•
174 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * Models a persistable domain object. Any domain object that implements this interface must specify some database `id`. */
export
interface
Entity
{ id?:
string
; }