UNPKG

hyperformula

Version:

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

24 lines (23 loc) 526 B
"use strict"; exports.__esModule = true; exports.DetailedCellError = void 0; /** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ class DetailedCellError { constructor(error, value, address) { var _a; this.value = value; this.address = address; this.type = error.type; this.message = (_a = error.message) !== null && _a !== void 0 ? _a : ''; } toString() { return this.value; } valueOf() { return this.value; } } exports.DetailedCellError = DetailedCellError;