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