UNPKG

liquidjs

Version:

A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.

10 lines (9 loc) 475 B
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)[]; propertyName: string; constructor(variable: IdentifierToken | QuotedToken, props: (IdentifierToken | QuotedToken | PropertyAccessToken)[], end: number); }