fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
9 lines (8 loc) • 342 B
TypeScript
/// <reference types="react" />
export interface ChildRowDeleteButtonProps {
treeDepth: number;
cellHeight: number;
onDeleteSubRow(): void;
isDeleteSubRowEnabled: boolean;
}
export default function ChildRowDeleteButton({ treeDepth, cellHeight, onDeleteSubRow, isDeleteSubRowEnabled }: ChildRowDeleteButtonProps): JSX.Element;