UNPKG

@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.

9 lines (8 loc) 297 B
import { TemplateEngineEnum, TemplateLanguageEnum } from '../interfaces/template.types'; export declare class RenderContentTemplateDto { content?: string; language?: TemplateLanguageEnum; engine?: TemplateEngineEnum; context?: Record<string, any>; templateLayoutId?: string; }