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
382 B
13 lines
382 B
import type { FunctionalComponent } from 'vue'; |
|
import type { ColumnType } from '../interface'; |
|
|
|
export type ColumnProps<RecordType> = ColumnType<RecordType>; |
|
|
|
/* istanbul ignore next */ |
|
/** |
|
* This is a syntactic sugar for `columns` prop. |
|
* So HOC will not work on this. |
|
*/ |
|
const Column: { <T>(arg: T): FunctionalComponent<ColumnProps<T>> } = () => null; |
|
|
|
export default Column;
|
|
|