@mui/x-charts
Version:
The community edition of MUI X Charts components.
11 lines • 995 B
TypeScript
import { type UseChartAnimationSignature } from "./useChartAnimation/index.js";
import { type UseChartDimensionsSignature } from "./useChartDimensions/index.js";
import { type UseChartIdSignature, UseChartIdParameters } from "./useChartId/index.js";
import { type UseChartSeriesSignature } from "./useChartSeries/index.js";
/**
* Internal plugins that create the tools used by the other plugins.
* These plugins are used by the Charts components.
*/
export declare const CHART_CORE_PLUGINS: readonly [import("../models/index.js").ChartPlugin<UseChartIdSignature>, import("../models/index.js").ChartPlugin<UseChartDimensionsSignature>, import("../models/index.js").ChartPlugin<UseChartSeriesSignature>, import("../models/index.js").ChartPlugin<UseChartAnimationSignature>];
export type ChartCorePluginSignatures = [UseChartIdSignature, UseChartDimensionsSignature, UseChartSeriesSignature, UseChartAnimationSignature];
export interface ChartCorePluginParameters extends UseChartIdParameters {}