chore: fix lint

This commit is contained in:
Jin Mao
2026-03-25 17:31:33 +08:00
parent 417e6c2ade
commit 282a102826
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
export * from './echarts';
export * from './types';
export { default as EchartsUI } from './echarts-ui.vue';
export * from './types';
export * from './use-echarts';

View File

@@ -9,8 +9,8 @@ import type {
GridComponentOption,
LegendComponentOption,
TitleComponentOption,
TooltipComponentOption,
ToolboxComponentOption,
TooltipComponentOption,
} from 'echarts/components';
import type { ComposeOption } from 'echarts/core';
@@ -23,6 +23,6 @@ export type ECOption = ComposeOption<
| PieSeriesOption
| RadarSeriesOption
| TitleComponentOption
| TooltipComponentOption
| ToolboxComponentOption
| TooltipComponentOption
>;