UNPKG

@handsontable/react

Version:

Best Data Grid for React with Spreadsheet Look and Feel.

11 lines (10 loc) 397 B
import { ForwardRefExoticComponent, RefAttributes } from 'react'; import { HotTableClass } from './hotTableClass'; import { HotTableProps } from './types'; interface Version { version?: string; } declare type HotTable = ForwardRefExoticComponent<HotTableProps & RefAttributes<HotTableClass>> & Version; declare const HotTable: HotTable; export default HotTable; export { HotTable };