mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 21:50:07 +08:00
14 lines
463 B
Vue
14 lines
463 B
Vue
|
import type { ColumnType } from '../interface';
|
||
|
import type { FunctionalComponent } from 'vue';
|
||
|
/* istanbul ignore next */
|
||
|
/**
|
||
|
* This is a syntactic sugar for `columns` prop.
|
||
|
* So HOC will not work on this.
|
||
|
*/
|
||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||
|
export type ColumnGroupProps<RecordType> = ColumnType<RecordType>;
|
||
|
|
||
|
const ColumnGroup: { <T>(arg: T): FunctionalComponent<ColumnGroupProps<T>> } = () => null;
|
||
|
|
||
|
export default ColumnGroup;
|