@player-ui/player
Version:
10 lines • 381 B
TypeScript
/**
* An expression to AST parser based on JSEP: http://jsep.from.so/
*/
import type { ExpressionNode } from "./types";
/** Parse out an expression from the string */
export declare function parseExpression(expr: string, options?: {
/** If true (the default), will throw on invalid expressions */
strict?: boolean;
}): ExpressionNode;
//# sourceMappingURL=parser.d.ts.map