@qualifyze/airtable-formulator
Version:
Airtable Formula Manipulator
12 lines (11 loc) • 400 B
TypeScript
import { ExpressionNode } from "./nodes";
export declare type ParseOptions = {
removeSpace?: boolean;
};
/**
* Parses a formula string into an AST.
* @experimental This function is experimental, potentially unstable and may change in future versions.
* @param formula
* @param options
*/
export declare function parse(formula: string, { removeSpace }?: ParseOptions): ExpressionNode | null;