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) • 328 B
TypeScript
import React from 'react';
import { Dimension } from '../common/types';
export declare type CellMaskProps = React.HTMLAttributes<HTMLDivElement> & Dimension;
declare const CellMask: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & Dimension & React.RefAttributes<HTMLDivElement>>;
export default CellMask;