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