vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
463 B
13 lines
463 B
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;
|
|
|