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