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