UNPKG

@odoo/o-spreadsheet

Version:
12 lines (11 loc) 497 B
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;