fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
8 lines (7 loc) • 323 B
TypeScript
export declare function get<R>(row: R, property: keyof R): R[keyof R];
interface Keys {
rowKey?: string;
values?: string[];
}
export declare function isRowSelected<R, K extends keyof R>(keys?: Keys | null, indexes?: number[] | null, isSelectedKey?: string | null, rowData?: R, rowIdx?: number): boolean;
export {};