UNPKG

fixed-react-data-grid-custom

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

10 lines (9 loc) 349 B
/// <reference types="react" /> import { CalculatedColumn } from '../types'; export interface CheckboxEditorProps<R> { value?: boolean; rowIdx: number; column: CalculatedColumn<R>; dependentValues: unknown; } export default function CheckboxEditor<R>({ value, rowIdx, column, dependentValues }: CheckboxEditorProps<R>): JSX.Element;