UNPKG

hyperformula

Version:

HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas

26 lines (25 loc) 617 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { CellError } from '../Cell'; import { ParsingError } from '../parser/Ast'; /** * Represents a cell that contains a parsing error. */ export declare class ParsingErrorVertex { readonly errors: ParsingError[]; readonly rawInput: string; /** * Constructor */ constructor(errors: ParsingError[], rawInput: string); /** * Returns the value of the cell. */ getCellValue(): CellError; /** * Returns the formula of the cell. */ getFormula(): string; }