dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_InvoicePdfModule cluster_InvoicePdfModule_exports cluster_InvoicePdfModule_providers InvoicePdfService InvoicePdfService InvoicePdfModule InvoicePdfModule InvoicePdfModule->InvoicePdfService InvoicePdfService InvoicePdfService InvoicePdfService->InvoicePdfModule

File

apps/recallassess/recallassess-api/src/api/shared/invoice/invoice-pdf.module.ts

Description

Shared module that exposes InvoicePdfService (invoice fluid report SSR + Puppeteer; BNestReportService must be registered globally via ReportModule).

import { BNestPrismaModule } from "@bish-nest/core/services/database/prisma/prisma.module";
import { Module } from "@nestjs/common";
import { InvoicePdfService } from "./invoice-pdf.service";

/**
 * Shared module that exposes **InvoicePdfService** (invoice fluid report SSR + Puppeteer;
 * **BNestReportService** must be registered globally via **ReportModule**).
 */
@Module({
  imports: [BNestPrismaModule],
  providers: [InvoicePdfService],
  exports: [InvoicePdfService],
})
export class InvoicePdfModule {}

results matching ""

    No results matching ""