import { IBarChart } from "./Bar";

export interface IStackedBarChart extends Omit<IBarChart, 'type'> {
    type: "stacked-bar",
}