πProp String
The module to handle the property in object by string.
Imports
import { PropStringService } from 'niro-health';import { PropStringModule } from 'niro-health';import type { IPropStringService } from 'niro-health';Method of Use
import { Module } from '@nestjs/common';
import {
PropStringService,
} from 'niro-health';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
controllers: [AppController],
providers: [
AppService,
{
provide: 'IPropStringService',
useClass: PropStringService,
},
],
})
export class AppModule {}Without dependencies
Methods
Method
Scope
Description
Last updated