UNPKG

@ackplus/nest-dynamic-templates

Version:

Dynamic template management for NestJS applications

15 lines (14 loc) 379 B
import { TemplateLanguageEnum } from '../interfaces/template.types'; export declare class RenderTemplateDto { locale?: string; name?: string; content?: string; language?: TemplateLanguageEnum; scope?: string; scopeId?: string; context?: Record<string, any>; } export declare class RenderTemplateOutputDTO { content: string; subject: string; }