liquidjs
Version:
A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.
9 lines (8 loc) • 370 B
TypeScript
import { Token } from './token';
import { TokenKind } from '../parser/token-kind';
export declare abstract class DelimitedToken extends Token {
trimLeft: boolean;
trimRight: boolean;
content: string;
constructor(kind: TokenKind, content: string, input: string, begin: number, end: number, trimLeft: boolean, trimRight: boolean, file?: string);
}