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.
14 lines (13 loc) • 578 B
TypeScript
import { NestMvcLoggerService } from "./nest-mvc-logger.service";
import { NestMvcOptionsService } from "./nest-mvc-options.service";
/**
* Factory service for creating Vite asset path helper functions.
* Generates helpers for resolving asset paths in both development and production modes.
*/
export declare class ViteAssetPathHelperFactoryService {
private readonly optionsService;
private readonly logger;
private readonly options;
constructor(optionsService: NestMvcOptionsService, logger: NestMvcLoggerService);
create(): (path: string) => string;
}