UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

12 lines (10 loc) 734 B
import { CellValue } from '../common'; export function spreadsheetColumnLabel(index: number): string; export function spreadsheetColumnIndex(label: string): number; export function createSpreadsheetData(rows?: number, columns?: number): any[][]; export function createSpreadsheetObjectData(rows?: number, colCount?: number): any[][]; export function createEmptySpreadsheetData(rows: number, columns: number): string[][]; export function dataRowToChangesArray(dataRow: CellValue[] | object, rowOffset?: number): number[] | Array<number | string> | CellValue[]; export function countFirstRowKeys(data: CellValue[]): number; export function isArrayOfArrays(data: any[]): boolean; export function isArrayOfObjects(data: any[]): boolean;