UNPKG
agilite-core
Version:
latest (7.8.0-rc-1)
7.8.0-rc-1
7.7.0-rc-6
7.7.0-rc-5
7.7.0-rc-4
7.7.0-rc-3
7.7.0-rc-2
7.7.0-rc-1
7.6.0
7.6.0-rc-9
7.6.0-rc-8
7.6.0-rc-7
7.6.0-rc-6
7.6.0-rc-5
7.6.0-rc-4
7.6.0-rc-3
7.6.0-rc-2
7.6.0-rc-10
7.6.0-rc-1
7.5.2
7.5.1
7.5.0
7.3.13
7.3.12
7.3.11
7.3.10
7.3.9
7.3.8
7.3.7
7.3.6
7.3.5
7.3.4
7.3.3
7.3.2
7.3.1
7.3.0
7.2.3
7.2.2
7.2.1
7.2.0
7.1.0
7.0.17
7.0.16
7.0.15
7.0.14
7.0.14-4
7.0.14-3
7.0.14-2
7.0.14-1
7.0.13
7.0.12
7.0.11
7.0.10
7.0.9
7.0.8
7.0.7
7.0.6
7.0.5
7.0.4
7.0.3
7.0.2
7.0.1
7.0.0
A NodeJS module that provides reusable backend functionality to the Agilit-e environment
agilite.io
agilite-core
/
src
/
interfaces.ts
15 lines
(13 loc)
•
239 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
MongoUrlConfig
{
protocol
:
string
host
:
string
username
?:
string
password
?:
string
urlSuffix
?:
string
}
export
interface
MongoConfig
{
general
:
MongoUrlConfig
maxPoolSizes
: { [
key
:
string
]:
number
} }