survey-core
Version:
A framework-independent core of the SurveyJS Form Library that works with rendering packages. Use it to integrate dynamic, interactive JSON-based forms and surveys into your app, collect user responses, and send them to your own database.
14 lines (13 loc) • 404 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 patchExpression;
createCondition(text: string): Operand;
parseExpression(text: string): Operand;
get error(): ConditionsParserError;
}