liquidjs
Version:
A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.
11 lines (10 loc) • 505 B
TypeScript
import { QuotedToken, Token } from '../tokens';
import type { Context } from '../context';
export declare class Expression {
private postfix;
constructor(tokens: IterableIterator<Token>);
evaluate(ctx: Context, lenient?: boolean): Generator<unknown, unknown, unknown>;
valid(): boolean;
}
export declare function evalToken(token: Token | undefined, ctx: Context, lenient?: boolean): IterableIterator<unknown>;
export declare function evalQuotedToken(token: QuotedToken): string;