import OriginTable, { renderMap } from './table'; import Title from './title'; import Count from './count'; import Group from './group'; export type OPTableType = typeof OriginTable & { Title: typeof Title; Count: typeof Count; Group: typeof Group; renderMap: typeof renderMap; }; const OPTable = OriginTable as OPTableType; OPTable.Title = Title; OPTable.Count = Count; OPTable.Group = Group; OPTable.renderMap = renderMap; export default OPTable;