UNPKG

liquidjs

Version:

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

8 lines (7 loc) 296 B
import { Token } from './token'; import { IdentifierToken } from './identifier-token'; export declare class NumberToken extends Token { whole: IdentifierToken; decimal?: IdentifierToken | undefined; constructor(whole: IdentifierToken, decimal?: IdentifierToken | undefined); }