Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

31 lines
1.4 KiB
TypeScript

import { BarLabelProps } from "../BarChart/BarLabel/index.js";
import { BarChartProps } from "../BarChart/BarChart.js";
import { ChartsGridProps } from "../ChartsGrid/index.js";
import { ChartsLegendProps } from "../ChartsLegend/index.js";
import { ChartsSurfaceProps } from "../ChartsSurface/index.js";
import { ChartsTooltipProps } from "../ChartsTooltip/index.js";
import { LineChartProps } from "../LineChart/LineChart.js";
import { ScatterChartProps } from "../ScatterChart/ScatterChart.js";
import { PieChartProps } from "../PieChart/PieChart.js";
import { ChartsXAxisProps, ChartsYAxisProps } from "../models/axis.js";
import { ChartsLocalizationProviderProps } from "../ChartsLocalizationProvider/index.js";
import { ChartDataProviderProps } from "../ChartDataProvider/index.js";
export interface ChartsComponentsPropsList {
MuiChartsXAxis: ChartsXAxisProps;
MuiChartsYAxis: ChartsYAxisProps;
MuiChartsGrid: ChartsGridProps;
MuiChartsLegend: ChartsLegendProps;
MuiChartsLocalizationProvider: ChartsLocalizationProviderProps;
MuiChartsTooltip: ChartsTooltipProps;
MuiChartsSurface: ChartsSurfaceProps;
MuiChartDataProvider: ChartDataProviderProps;
MuiBarChart: BarChartProps;
MuiBarLabel: BarLabelProps;
MuiLineChart: LineChartProps;
MuiScatterChart: ScatterChartProps;
MuiPieChart: PieChartProps;
}
declare module '@mui/material/styles' {
interface ComponentsPropsList extends ChartsComponentsPropsList {}
}
export {};