@visactor/react-vtable
Version:
The react version of VTable
9 lines (8 loc) • 543 B
TypeScript
import type React from 'react';
import type { ListTableConstructorOptions } from '@visactor/vtable';
import type { BaseTableProps } from './base-table';
export interface ListTableProps extends Omit<BaseTableProps, 'records' | 'columnWidthConfig' | 'columns' | 'dragOrder' | 'resize'>, Omit<ListTableConstructorOptions, 'container'> {
}
export declare const ListTableSimple: React.ForwardRefExoticComponent<ListTableProps & {
children?: React.ReactNode;
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;