Skip to content
Snippets Groups Projects
result-chart-experiment.interface.ts 135 B
export interface ResultChartExperiment {
  data: {
    chart: {
      type: string;
    };
    series: unknown;
  };
  type: string;
}