UNPKG

twing

Version:

First-class Twig engine for the JavaScript ecosystem

16 lines (15 loc) 306 B
import { TwingTagHandler } from "../tag-handler"; /** * Tests a condition. * * <pre> * {% if users %} * <ul> * {% for user in users %} * <li>{{ user.username|e }}</li> * {% endfor %} * </ul> * {% endif %} * </pre> */ export declare const createIfTagHandler: () => TwingTagHandler;