mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
import { ColumnType } from './interface';
|
|
|
|
export interface ColumnProps<RecordType> extends ColumnType<RecordType> {
|
|
children?: null;
|
|
}
|
|
|
|
/* istanbul ignore next */
|
|
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */
|
|
// eslint-disable-next-line no-unused-vars
|
|
function Column<RecordType>(_: ColumnProps<RecordType>) {
|
|
return null;
|
|
}
|
|
|
|
export default Column;
|