ant-design-vue/types/table/column-group.d.ts
2019-01-12 12:46:29 +08:00

21 lines
551 B
TypeScript

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from '../component';
export declare class ColumnGroup extends AntdComponent {
/**
* Title of the column group
* @type any
*/
title: any;
/**
* When using columns, you can use this property to configure the properties that support the slot,
* such as slots: { title: 'XXX'}
* @type object
*/
slots: object;
}