2022-05-07 14:31:54 +08:00
|
|
|
import type * as React from 'react';
|
2024-04-08 14:04:08 +08:00
|
|
|
|
2024-08-11 10:58:13 +08:00
|
|
|
import type { AnyObject } from '../_util/type';
|
2022-05-07 14:31:54 +08:00
|
|
|
import type { ColumnProps } from './Column';
|
2022-06-22 14:57:09 +08:00
|
|
|
import type { ColumnType } from './interface';
|
2020-01-06 17:28:28 +08:00
|
|
|
|
2024-08-13 10:34:52 +08:00
|
|
|
export interface ColumnGroupProps<RecordType = AnyObject>
|
2024-08-11 10:58:13 +08:00
|
|
|
extends Omit<ColumnType<RecordType>, 'children'> {
|
2020-01-06 17:28:28 +08:00
|
|
|
children:
|
|
|
|
| React.ReactElement<ColumnProps<RecordType>>
|
|
|
|
| React.ReactElement<ColumnProps<RecordType>>[];
|
|
|
|
}
|
|
|
|
|
2023-06-07 21:59:21 +08:00
|
|
|
/* istanbul ignore next */
|
2020-12-28 15:30:18 +08:00
|
|
|
/** This is a syntactic sugar for `columns` prop. So HOC will not work on this. */
|
2024-09-19 03:30:19 +08:00
|
|
|
|
2024-08-11 10:58:13 +08:00
|
|
|
const ColumnGroup = <RecordType extends AnyObject>(_: ColumnGroupProps<RecordType>) => null;
|
2020-01-06 17:28:28 +08:00
|
|
|
|
|
|
|
export default ColumnGroup;
|