UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

8 lines (7 loc) 379 B
import { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import { ColumnGroupProps } from './ColumnGroup.d'; export interface IColumnGroup extends ForwardRefExoticComponent<PropsWithoutRef<ColumnGroupProps> & RefAttributes<HTMLDivElement>> { __PRO_TABLE_COLUMN_GROUP?: boolean; } declare const ColumnGroup: IColumnGroup; export default ColumnGroup;