UNPKG

pivot-chart

Version:

pivot table react component

11 lines (10 loc) 348 B
import React from 'react'; import { VisType, AggNodeConfig } from '../../common'; interface ToolBarProps { visType: VisType; onVisTypeChange: (visType: VisType) => void; showAggregatedNode: AggNodeConfig; onShowAggNodeChange: (values: AggNodeConfig) => void; } declare const ToolBar: React.FC<ToolBarProps>; export default ToolBar;