9 lines
301 B
TypeScript
9 lines
301 B
TypeScript
import { createUseEcharts } from './use-echarts-base';
|
|
import workspaceEcharts from './workspace-echarts';
|
|
|
|
const useEcharts = createUseEcharts(workspaceEcharts);
|
|
|
|
export { default as EchartsUI } from './echarts-ui.vue';
|
|
export { useEcharts };
|
|
export type { EchartsUIType } from './use-echarts-base';
|