UNPKG

zhu-jiang-yi-yuan-mobile

Version:

南方医科大学珠江医院移动端

8 lines (7 loc) 246 B
import { TableProps as AntTableProps } from 'antd/es/table'; import { HTMLAttributes } from 'react'; export type TableProps<T> = { title: string; } & Pick<AntTableProps<T>, 'columns' | 'dataSource'> & Pick<HTMLAttributes<any>, 'className'>