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