@visactor/react-vtable
Version:
The react version of VTable
9 lines (8 loc) • 405 B
TypeScript
import type { ReactElement } from 'react';
import type { BaseComponentProps } from '../base-component';
import type { ColumnDefine } from '@visactor/vtable';
export type ListColumnProps = Omit<ColumnDefine, 'columns'> & BaseComponentProps;
export declare const ListColumn: {
(props: ListColumnProps): ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};