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.

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