UNPKG

hyperformula

Version:

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

27 lines (26 loc) 654 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { CellError } from '../Cell'; import { ParsingError } from '../parser/Ast'; import { CellVertex } from './CellVertex'; /** * Represents a cell that contains a parsing error. */ export declare class ParsingErrorVertex extends CellVertex { 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; }