From 9676fb3e9f61d6a6ca862d44a6b8f806c19ede45 Mon Sep 17 00:00:00 2001 From: Ugo Stephant Date: Thu, 6 Jun 2024 15:14:40 +0200 Subject: [PATCH] fix(react-d3-plugin): missing type --- packages/react-d3-plugin/lib/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-d3-plugin/lib/index.ts b/packages/react-d3-plugin/lib/index.ts index ea72fbd5b..6390bcb0d 100644 --- a/packages/react-d3-plugin/lib/index.ts +++ b/packages/react-d3-plugin/lib/index.ts @@ -2,7 +2,7 @@ export { default as Chart, type ChartProps } from './Chart'; export { default as Curve, type CurveProps } from './Curve'; export { default as Marker, type MarkerProps } from './Marker'; export { default as Bar, type BarProps } from './Bar'; -export { default as Axis, type AxisProps, AxisObject } from './Axis'; +export { default as Axis, type AxisProps, type AxisObject } from './Axis'; export { useChart,