import { IColumnChart } from "./Column";

export interface IStackedColumnChart extends Omit<IColumnChart, 'type'> {
    type: "stacked-column",
}