2024-04-07 17:07:50 +08:00

13 lines
417 B
TypeScript

import RChart from './src'
import chartProps from './src/props'
import useChart from './src/hooks/useChart'
import type { ExtractPublicPropTypes } from 'vue'
import type * as RChartType from './src/types'
import type { UseChartReturn } from './src/hooks/useChart'
export type ChartProps = ExtractPublicPropTypes<typeof chartProps>
export type { RChartType, UseChartReturn }
export { RChart, chartProps, useChart }