name:
dist/Parser/DataStore.d.ts
-rw-r--r--
419
1/**
2 * Holds cell values, and allows for the updating and manipulation of those cells.
3 */
4import { Cell } from "../Cell";
5/**
6 * Cell DataStore that stores cells in memory.
7 */
8declare class DataStore {
9 /**
10 * Holds cells inside an object for quick access.
11 */
12 data: Object;
13 getCell(key: string): Cell;
14 addCell(cell: Cell): Cell;
15 getDependencies(id: string): any[];
16}
17export { DataStore };