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.

23 lines (22 loc) 419 B
export declare enum TemplateTypeEnum { EMAIL = "email", SMS = "sms", PUSH = "push", PDF = "pdf" } export declare enum TemplateEngineEnum { NUNJUCKS = "njk", HANDLEBARS = "hbs", EJS = "ejs", PUG = "pug" } export declare enum TemplateLanguageEnum { MJML = "mjml", HTML = "html", MARKDOWN = "md", TEXT = "txt" } export interface Scope { scope: string; id: string; }