UNPKG

341 BTypeScriptView Raw
1import { TCell, TColumn } from '../../types';
2import { JSX } from 'preact';
3import Row from '../../row';
4export interface TableEvents {
5 cellClick: (e: JSX.TargetedMouseEvent<HTMLTableCellElement>, cell: TCell, column: TColumn, row: Row) => void;
6 rowClick: (e: JSX.TargetedMouseEvent<HTMLTableRowElement>, row: Row) => void;
7}