@odoo/o-spreadsheet
Version:
A spreadsheet component
12 lines (11 loc) • 497 B
TypeScript
import { CellValue } from "../../types/cells";
import { XMLAttributes, XMLString } from "../../types/xlsx";
export declare function addFormula(formula: string | undefined, value: CellValue, formulaSpillRange: string): {
attrs: XMLAttributes;
node: XMLString;
};
export declare function addContent(content: string, sharedStrings: string[], forceString?: boolean): {
attrs: XMLAttributes;
node: XMLString;
};
export declare function adaptFormulaToExcel(formulaText: string): string;