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) 296 B
import { Token } from './token'; export declare class QuotedToken extends Token { input: string; begin: number; end: number; file?: string | undefined; readonly content: string; constructor(input: string, begin: number, end: number, file?: string | undefined); }