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.

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