@ackplus/nest-dynamic-templates
Version:
A powerful and flexible dynamic template rendering library for NestJS applications with support for Nunjucks, Handlebars, EJS, Pug, MJML, Markdown, and more.
26 lines (25 loc) • 1.33 kB
TypeScript
import { NestDynamicTemplateLayout } from './lib/entities/template-layout.entity';
export * from './lib/nest-dynamic-templates.module';
export * from './lib/services/template.service';
export * from './lib/services/template-layout.service';
export * from './lib/services/template-config.service';
export * from './lib/services/template-engine.registry';
export * from './lib/interfaces/module-config.interface';
export * from './lib/interfaces/template.types';
export * from './lib/config/resolve-config';
export * from './lib/entities/template.entity';
export * from './lib/entities/template-layout.entity';
export * from './lib/errors/template.errors';
export * from './lib/errors/diagnose';
export * from './lib/constant';
export * from './lib/engines/template-engine';
export * from './lib/engines/language-engine';
export * from './lib/dto/create-template.dto';
export * from './lib/dto/render-template.dto';
export * from './lib/dto/render-content-template.dto';
export * from './lib/dto/template-filter.dto';
export * from './lib/dto/create-template-layout.dto';
export * from './lib/dto/render-template-layout.dto';
export * from './lib/dto/render-content-template-layout.dto';
export * from './lib/dto/template-layout-filter.dto';
export declare const NestDynamicTemplatesEntities: (typeof NestDynamicTemplateLayout)[];