mirror of https://gitee.com/antv-l7/antv-l7
8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
|
import * as React from 'react';
|
||
|
export interface ColumnGroupProps {
|
||
|
title?: React.ReactNode;
|
||
|
}
|
||
|
export default class ColumnGroup extends React.Component<ColumnGroupProps> {
|
||
|
static isTableColumnGroup: boolean;
|
||
|
}
|