liquidjs
Version:
A simple, expressive, safe and Shopify compatible template engine in pure JavaScript.
10 lines (9 loc) • 482 B
TypeScript
import { Token } from './token';
import { IdentifierToken } from './identifier-token';
import { QuotedToken } from './quoted-token';
export declare class PropertyAccessToken extends Token {
variable: IdentifierToken | QuotedToken;
props: (IdentifierToken | QuotedToken | PropertyAccessToken)[];
constructor(variable: IdentifierToken | QuotedToken, props: (IdentifierToken | QuotedToken | PropertyAccessToken)[], end: number);
getVariableAsText(): string;
}