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) 341 B
import { TemplateLanguageEnum } from '../../interfaces/template.types'; import { LanguageEngine } from '../language-engine'; export declare class TextEngine extends LanguageEngine { static engineName: TemplateLanguageEnum; static displayName: string; render(content: string): Promise<string>; validate(): Promise<boolean>; }