UNPKG
@brontosaurus/db
Version:
latest (3.24.0)
3.24.0
3.23.1
3.23.0
3.22.1
3.22.0
3.21.5
3.21.4
3.21.3
3.21.2
3.21.1
3.21.0
3.20.2
3.20.1
3.20.0
3.19.0
3.18.0
3.17.1
3.17.0
3.16.4
3.16.3
3.16.2
3.16.1
3.16.0
3.15.2
3.15.1
3.15.0
3.14.0
3.13.6
3.13.5
3.13.4
3.13.3
3.13.2
3.13.1
3.13.0
3.12.0
3.11.0
3.10.4
3.10.3
3.10.2
3.10.1
3.10.0
3.9.0
3.8.8
3.8.7
3.8.6
3.8.5
3.8.4
3.8.3
3.8.2
3.8.1
3.8.0
3.7.1
3.7.0
3.6.6
3.6.5
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.5.9
3.5.8
3.5.7
3.5.6
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.3
3.4.2
3.4.1
3.4.0
3.3.2
3.3.1
3.3.0
3.2.1
3.2.0
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.18.0
2.17.4
2.17.3
2.17.2
2.17.1
2.17.0
2.16.2
2.16.1
2.16.0
2.15.1
2.15.0
2.14.1
2.14.0
2.13.2
2.13.1
2.13.0
2.12.2
2.12.1
2.12.0
2.11.4
2.11.3
2.11.2
2.11.1
2.11.0
2.10.2
2.10.1
2.10.0
2.9.2
2.9.1
2.9.0
2.8.2
2.8.1
2.8.0
2.7.3
2.7.2
2.7.1
2.7.0
2.6.1
2.6.0
2.5.2
2.5.1
2.5.0
2.4.0
2.3.2
2.3.1
2.3.0
2.2.1
2.2.0
2.1.0
2.0.0
1.3.1
1.3.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.0.1
1.0.0
:ocean: Schema for brontosaurus
github.com/SudoDotDog/Brontosaurus-DB
SudoDotDog/Brontosaurus-DB
@brontosaurus/db
/
model
/
organization.d.ts
6 lines
(5 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
Document
,
Model
}
from
"mongoose"
;
import
{
IOrganization
}
from
"../interface/organization"
;
export
interface
IOrganizationModel
extends
IOrganization
,
Document
{ }
export
declare
const
OrganizationModel
:
Model
<
IOrganizationModel
>;