UNPKG

@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.

12 lines (11 loc) 261 B
declare enum CharKind { START = "start", END = "end" } type CharDescriptor = { "char": string; kind: CharKind; }; declare const TEMPLATE_CHARS: Record<string, CharDescriptor>; export type { CharDescriptor }; export { CharKind, TEMPLATE_CHARS };