import { ChartType } from 'chart.js'; import { ChartAxis } from './chart-type'; export interface ChartConfig { type: ChartType; title?: string; axis: ChartAxis[]; }