@ogs-gmbh/ngx-template-engine
Version:
A library providing a flexible and efficient template engine for dynamic content rendering. It enables easy integration of customizable templates within Angular applications.
7 lines (6 loc) • 321 B
TypeScript
import { InjectionToken, ValueProvider } from "@angular/core";
export type TemplateEngineConfig = {
fallbackOnError?: boolean;
};
export declare const TEMPLATE_ENGINE_CONFIG_TOKEN: InjectionToken<TemplateEngineConfig>;
export declare function provideTemplateEngineConfig(config: TemplateEngineConfig): ValueProvider;