xspreadsheet data - sailfish009/xspreadsheet GitHub Wiki
// ./src/core/index.ts
export interface SpreadsheetData
{
rowHeight?: number;
colWidth?: number;
rows?: MapInt<Row>;
cols?: MapInt<Col>;
cell: Cell; // global default cell
cells?: MapInt<MapInt<Cell>>;
[prop: string]: any
}