UNPKG

twing

Version:

First-class Twig engine for the JavaScript ecosystem

4 lines (3 loc) 284 B
export type TwingEscapingStrategyResolver = (templateName: string) => string | null; export type TwingEscapingStrategy = "css" | "html" | "html_attr" | "js" | "url" | string; export type TwingEscapingStrategyHandler = (value: string, charset: string, templateName: string) => string;