UNPKG
@randombenj/db
Version:
latest (1.10.2-alpha.0)
unstable (1.10.2-alpha.41)
1.10.2-alpha.42
1.10.2-alpha.41
1.10.2-alpha.0
Display, search and copy LXD-images using a web interface.
github.com/Roche/lxdhub
Roche/lxdhub
@randombenj/db
/
lib
/
database
/
database.module.d.ts
10 lines
(9 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
DynamicModule
}
from
'@nestjs/common'
;
import
{
IDatabaseSettings
}
from
'.'
;
/** * The database module is used for database * related services. */
export
declare
class
DatabaseModule
{
static
forRoot
(
settings
?:
IDatabaseSettings
):
DynamicModule
; }