UNPKG

react-curse

Version:

A curses-like blazingly fast react renderer

11 lines (10 loc) 475 B
import { type ListBase } from './List'; import React from 'react'; interface ListTableProps extends ListBase { mode?: 'cell' | 'row'; head?: any[]; renderHead?: (_: any) => React.ReactNode; data?: any[][]; } export default function List({ mode, focus, initialPos, height: _height, width: _width, head, renderHead, data, renderItem, scrollbar, scrollbarBackground, scrollbarColor, vi, pass, onChange, onSubmit }: ListTableProps): React.JSX.Element; export {};