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.
13 lines (12 loc) • 483 B
TypeScript
import { Token } from './token';
import { ValueToken } from './value-token';
import { IdentifierToken } from './identifier-token';
export declare class HashToken extends Token {
input: string;
begin: number;
end: number;
name: IdentifierToken;
value?: ValueToken | undefined;
file?: string | undefined;
constructor(input: string, begin: number, end: number, name: IdentifierToken, value?: ValueToken | undefined, file?: string | undefined);
}