import type { BaseTableProps, ArtColumn } from "ali-react-table" export interface ColumnProps extends ArtColumn { // code: string // name: any // width?: number } export interface TableProps extends BaseTableProps { /** * dataSource * */ // dataSource: any[] /** * columns * */ // columns: ColumnProps[] /** * LoadingIcon * */ // LoadingIcon?: ReactNode | string | number /** * aliTable otherProps * */ }