UNPKG

drizzle-cube

Version:

Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.

8 lines (7 loc) 291 B
interface ChartLegendProps { onMouseEnter?: (o: any, i: any) => void; onMouseLeave?: () => void; showLegend?: boolean; } export default function ChartLegend({ onMouseEnter, onMouseLeave, showLegend }: ChartLegendProps): import("react/jsx-runtime").JSX.Element | null; export {};