@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
8 lines (7 loc) • 345 B
TypeScript
import * as React from 'react';
import { SeriesItemIdentifier } from '../models';
export declare const useInteractionItemProps: (skip?: boolean) => (() => {}) | ((data: SeriesItemIdentifier) => {
onPointerEnter: () => void;
onPointerLeave: (event: React.PointerEvent) => void;
onPointerDown: (event: React.PointerEvent) => void;
});