dropkiq
Version:
Liquid Expressions Simplified
10 lines (9 loc) • 370 B
TypeScript
import { Context } from '../context/context';
export declare class Expression {
private operands;
private postfix;
constructor(str?: string);
evaluate(ctx: Context): Generator<string | number | boolean | object, any, any>;
value(ctx: Context): Generator<Generator<string | number | boolean | object, any, any>, any, any>;
private evaluateOnce;
}