import type { App } from 'vue';
import * as Components from './components';

const MozaicChart = {
  install: (app: App, options: {}) => {
    Object.keys(Components).forEach((name) => {
      // @ts-ignore
      app.component(name, Components[name]);
    });
  }
};

export default MozaicChart;

export { BarChart } from './components/bar';
export { DoughnutChart } from './components/doughnut';
export { LineChart } from './components/line';
export { RadarChart } from './components/radar';
export { MixedBarLineChart } from './components/mixed';
export { BubbleChart } from './components/bubble';
