UNPKG

hyperformula-dc

Version:

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

18 lines (17 loc) 473 B
/** * @license * Copyright (c) 2021 Handsoncode. All rights reserved. */ import { SimpleCellAddress } from '../Cell'; import { EmptyValueType } from '../interpreter/InterpreterValue'; /** * Represents singleton vertex bound to all empty cells */ export declare class EmptyCellVertex { address: SimpleCellAddress; constructor(address: SimpleCellAddress); /** * Retrieves cell value bound to that singleton */ getCellValue(): EmptyValueType; }