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.

11 lines (10 loc) 300 B
/// <reference types="node" /> import { Emitter } from '../emitters'; export declare class StreamedEmitter implements Emitter { buffer: string; stream: NodeJS.ReadableStream; constructor(); write: (html: any) => void; error: (err: Error) => void; end: () => void; }