UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

16 lines 2.12 kB
import { type UseChartAnimationSignature } from "./useChartAnimation/index.mjs"; import { type UseChartDimensionsSignature } from "./useChartDimensions/index.mjs"; import { type UseChartElementRefSignature } from "./useChartElementRef/index.mjs"; import { type UseChartExperimentalFeaturesSignature } from "./useChartExperimentalFeature/index.mjs"; import { type UseChartIdSignature, type UseChartIdParameters } from "./useChartId/index.mjs"; import { type UseChartSeriesConfigSignature, type UseChartSeriesConfigParameters } from "./useChartSeriesConfig/index.mjs"; import { type UseChartSeriesSignature } from "./useChartSeries/index.mjs"; import { type UseChartInteractionListenerSignature } from "./useChartInteractionListener/index.mjs"; import type { ChartSeriesType } from "../../../models/seriesType/config.mjs"; /** * 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.mjs").ChartPlugin<UseChartElementRefSignature>, import("../models/index.mjs").ChartPlugin<UseChartIdSignature>, import("../models/index.mjs").ChartPlugin<UseChartSeriesConfigSignature>, import("../models/index.mjs").ChartPlugin<UseChartExperimentalFeaturesSignature<keyof import("../../index.mjs").ChartsSeriesConfig>>, import("../models/index.mjs").ChartPlugin<UseChartDimensionsSignature>, import("../models/index.mjs").ChartPlugin<UseChartSeriesSignature>, import("../models/index.mjs").ChartPlugin<UseChartInteractionListenerSignature>, import("../models/index.mjs").ChartPlugin<UseChartAnimationSignature>]; export type ChartCorePluginSignatures<SeriesType extends ChartSeriesType = ChartSeriesType> = [UseChartElementRefSignature, UseChartIdSignature, UseChartSeriesConfigSignature<SeriesType>, UseChartExperimentalFeaturesSignature<SeriesType>, UseChartDimensionsSignature, UseChartSeriesSignature<SeriesType>, UseChartAnimationSignature, UseChartInteractionListenerSignature]; export interface ChartCorePluginParameters extends UseChartIdParameters, UseChartSeriesConfigParameters {}