import { ProColumns } from '@ant-design/pro-table';
import { TableTreeProps } from './TableTreeProps';

export type TableStatusColumnProps<ExtraDT extends string> = Pick<TableTreeProps<ExtraDT>, 'dtype'>
  & Pick<ProColumns<T>, 'width' | 'title'>
