πBJSON
The module that provides the service to encode and decode objects.
Imports
import { BjsonService } from 'niro-health';import { BjsonModule } from 'niro-health';import type { IBjsonService } from 'niro-health';Method of Use
import { Module } from '@nestjs/common';
import { BjsonService } from 'niro-health';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
controllers: [AppController],
providers: [
AppService,
{
provide: 'IBjsonService',
useClass: BjsonService,
},
],
})
export class AppModule {}Method of Use with classes
Test results

Without dependencies
Properties
Property
Scope
Description
Methods
Method
Scope
Description
Last updated