hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
16 lines (15 loc) • 370 B
TypeScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import { EmptyValueType } from '../interpreter/InterpreterValue';
/**
* Represents singleton vertex bound to all empty cells
*/
export declare class EmptyCellVertex {
constructor();
/**
* Retrieves cell value bound to that singleton
*/
getCellValue(): EmptyValueType;
}