@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) • 444 B
TypeScript
import { DynamicModule } from '@nestjs/common';
import { NestDynamicTemplatesModuleConfig, NestDynamicTemplatesModuleAsyncOptions } from './interfaces/module-config.interface';
export declare class NestDynamicTemplatesModule {
static forRoot(config?: NestDynamicTemplatesModuleConfig): DynamicModule;
static forRootAsync(options: NestDynamicTemplatesModuleAsyncOptions): DynamicModule;
private static createAsyncOptionsProviders;
}