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.

16 lines (15 loc) 443 B
import { TemplateEngineEnum, TemplateLanguageEnum } from '../interfaces/template.types'; export declare class CreateTemplateLayoutDto { name: string; type?: string; displayName: string; description?: string; engine: TemplateEngineEnum; language: TemplateLanguageEnum; content: string; scope: string; scopeId?: string; locale?: string; previewContext?: Record<string, any>; isActive?: boolean; }