@odoo/o-spreadsheet
Version:
A spreadsheet component
16 lines (15 loc) • 370 B
TypeScript
type LegacyNormalizedFormula = {
text: string;
dependencies: string[];
value?: any;
};
/**
* parses a formula (as a string) into the same formula,
* but with the references to other cells extracted
*
* =sum(a3:b1) + c3 --> =sum(|0|) + |1|
*
* @param formula
*/
export declare function normalizeV9(formula: string): LegacyNormalizedFormula;
export {};