UNPKG

@visactor/react-vtable

Version:

The react version of VTable

9 lines (8 loc) 478 B
import type React from 'react'; import type { ListTableConstructorOptions } from '@visactor/vtable'; import type { BaseTableProps } from './base-table'; export interface ListTableProps extends Omit<BaseTableProps, 'records'>, Omit<ListTableConstructorOptions, 'container'> { } export declare const ListTable: React.ForwardRefExoticComponent<ListTableProps & { children?: React.ReactNode; } & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;