fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
6 lines (5 loc) • 373 B
TypeScript
import Immutable from 'immutable';
import { Column, CalculatedColumn } from './common/types';
export declare function getSize<T>(columns: T[] | Immutable.List<T>): number;
export declare function canEdit<R>(column: CalculatedColumn<R>, rowData: R, enableCellSelect?: boolean): boolean;
export declare function isFrozen<R>(column: Column<R> | CalculatedColumn<R>): boolean;