import { IPieChart } from './Pie';

export interface IDoughnutChart extends Omit<IPieChart, 'type'> {
    type: "doughnut",
    cutout?: number,
}