import { IRadarChart } from "./Radar";

export interface IFilledRadarChart extends Omit<IRadarChart, 'type'> {
    type: "filled-radar",
}