diff --git a/superset-frontend/packages/superset-ui-core/src/chart/index.ts b/superset-frontend/packages/superset-ui-core/src/chart/index.ts index bc4b5a20b..f0245febc 100644 --- a/superset-frontend/packages/superset-ui-core/src/chart/index.ts +++ b/superset-frontend/packages/superset-ui-core/src/chart/index.ts @@ -17,10 +17,13 @@ * under the License. */ +import ChartProps, { ChartPropsConfig } from './models/ChartProps'; + export { default as ChartClient } from './clients/ChartClient'; export { default as ChartMetadata } from './models/ChartMetadata'; export { default as ChartPlugin } from './models/ChartPlugin'; -export { default as ChartProps, ChartPropsConfig } from './models/ChartProps'; +export { ChartProps }; +export type { ChartPropsConfig }; export { default as createLoadableRenderer } from './components/createLoadableRenderer'; export { default as reactify } from './components/reactify';