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.

9 lines (8 loc) 371 B
import { Liquid, TopLevelToken, Emitter, TagToken, Context, Tag } from '..'; import { Arguments } from '../template'; export default class extends Tag { private value?; constructor(token: TagToken, remainTokens: TopLevelToken[], liquid: Liquid); render(ctx: Context, emitter: Emitter): Generator<unknown, void, unknown>; arguments(): Arguments; }