πArchive
The module responsible for create a zip file with the files.
Imports
import { ArchiveService } from 'niro-health';import { ArchiveModule } from 'niro-health';import type { IArchiveService } from 'niro-health';Method of Use
Test results
import { Module } from '@nestjs/common';
import { ArchiveService } from 'niro-health';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
controllers: [AppController],
providers: [
AppService,
{
provide: 'IArchiveService',
useClass: ArchiveService,
},
],
})
export class AppModule {}Without dependencies
Properties
Property
Scope
Description
Methods
Method
Scope
Description
Last updated