UNPKG

@chief-editor/ui

Version:

UI Component for chief editor

9 lines (8 loc) 334 B
import Handsontable from 'handsontable'; import { CSSProperties } from 'react'; export interface IHandsonTable extends Handsontable.GridSettings { className?: string; style?: CSSProperties; } export declare type IHandsonTableProps = IHandsonTable; export declare function HandsonTable(props: IHandsonTableProps): JSX.Element;