fix(Dev-Server): Edit ChartPropsConfig reexport to be a type object (#28225)

This commit is contained in:
Ross Mabbett 2024-04-30 09:09:33 -04:00 committed by GitHub
parent a38dc90abe
commit 2e5f3ed851
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -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';