spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← All files
name: dist/Parser/Parser.d.ts
-rw-r--r--
390
 1/**
 2 * Creates a new FormulaParser, which parses formulas, and does minimal error handling.
 3 *
 4 * @param handler should be a Sheet, since the parser needs access to fixedCellValue, cellValue, cellRangeValue, and
 5 * fixedCellRangeValue
 6 * @returns formula parser instance for use with parser.js
 7 * @constructor
 8 */
 9declare let FormulaParser: (handler: any) => any;
10export { FormulaParser };