UNPKG

hyperformula

Version:

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

17 lines (16 loc) 567 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { CellError, ErrorType } from './Cell'; export declare type NoErrorCellValue = number | string | boolean | null; export declare type CellValue = NoErrorCellValue | DetailedCellError; export declare class DetailedCellError { readonly value: string; readonly address?: string | undefined; readonly type: ErrorType; readonly message: string; constructor(error: CellError, value: string, address?: string | undefined); toString(): string; valueOf(): string; }