UNPKG
database-backup
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.1
A NestJS dynamic module for backing up PostgreSQL databases using pg_dump.
database-backup
/
dist
/
backup.module.d.ts
6 lines
(5 loc)
•
208 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
DynamicModule
}
from
'@nestjs/common'
;
import
{
BackupConfig
}
from
'./backup-config.interface'
;
export
declare
class
BackupModule
{
static
register
(
backupConfig
:
BackupConfig
):
DynamicModule
; }