import { ILineChart } from "./Line";

export interface IStackedAreaChart extends Omit<ILineChart, 'type'> {
    type: "stacked-area",
}