UNPKG

nestjs-mvc-tools

Version:

NestJS MVC Tools is a small set of tools designed to help you get started more easily with traditional web development approaches in NestJS.

13 lines (12 loc) 497 B
import { Logger } from "@nestjs/common"; import { NestMvcOptionsService } from "./nest-mvc-options.service"; /** * Custom logger service extending NestJS Logger. * Provides conditional debug logging based on configuration settings. */ export declare class NestMvcLoggerService extends Logger { private readonly optionsService; private readonly debugMode; constructor(optionsService: NestMvcOptionsService); debug(message: unknown, ...optionalParams: [...any, string?]): void; }