survey-core
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
15 lines (14 loc) • 436 B
TypeScript
import { Operand } from "./expressions/expressions";
export declare class ConditionsParserError {
at: number;
code: string;
constructor(at: number, code: string);
}
export declare class ConditionsParser {
private conditionError;
private static parserCache;
private patchExpression;
createCondition(text: string): Operand;
parseExpression(text: string): Operand;
get error(): ConditionsParserError;
}