ka-table
Version:
The customizable, extendable, lightweight, and fully free React Table Component
10 lines (9 loc) • 620 B
TypeScript
import { ITableProps } from '../Components/Table/Table';
import { Cell } from '../Models/Cell';
export interface IMoveFocusedSettings {
end?: boolean;
}
export declare const getRightCell: (currentCell: Cell, props: ITableProps, settings?: IMoveFocusedSettings) => Cell;
export declare const getLeftCell: (currentCell: Cell, props: ITableProps, settings?: IMoveFocusedSettings) => Cell;
export declare const getUpCell: (currentCell: Cell, props: ITableProps, settings?: IMoveFocusedSettings) => Cell;
export declare const getDownCell: (currentCell: Cell, props: ITableProps, settings?: IMoveFocusedSettings) => Cell;