File: src/Calx/Workbook/Data.ts

Recommend this page to a friend!
  Packages of ikhsan   jQuery Calx   src/Calx/Workbook/Data.ts   Download  
File: src/Calx/Workbook/Data.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: jQuery Calx
Calculate form input values based on formulas
Author: By
Last change:
Date: 5 months ago
Size: 463 bytes
 

Contents

Class file image Download
import { DataType } from "../Cell/DataType"; export type Data = { sheets: Record<string, { element?: any; // Changed from HTMLElement to any for test compatibility cells: Record<string, CellData>; // Simplified to direct mapping variables: Record<string, string>; }>; }; // Define the Cell type export type CellData = { formula?: string; value?: any; format?: string; type?: DataType; formatter?: Function; };