UNPKG

liquidjs

Version:

A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support.

12 lines (11 loc) 239 B
export interface Emitter { /** * Write a html value into emitter * @param html string, Drop or other primitive value */ write(html: any): void; /** * Buffered string */ buffer: string; }