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) • 387 B
TypeScript
import { Token } from './token';
import { ValueToken } from './value-token';
export declare class RangeToken extends Token {
input: string;
begin: number;
end: number;
lhs: ValueToken;
rhs: ValueToken;
file?: string | undefined;
constructor(input: string, begin: number, end: number, lhs: ValueToken, rhs: ValueToken, file?: string | undefined);
}